Skip to content

feat(codegen-x86): mov reg, 0 -> xor reg, reg #589

feat(codegen-x86): mov reg, 0 -> xor reg, reg

feat(codegen-x86): mov reg, 0 -> xor reg, reg #589

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Install stable
run: |
rustup update
- name: Build
run: cargo +stable build --verbose
- name: Run tests
run: cargo +stable test --verbose