Emit mov r64 imm32
#16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: main | |
| on: | |
| push: | |
| branches: [ "**" ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: clang | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y clang binutils libc6-dev | |
| - name: ci | |
| run: make ci |