fix compiler crash when assigning to non-assignable expression #701
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: C CI | |
| on: push | |
| jobs: | |
| format: | |
| name: format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the source code | |
| uses: actions/checkout@v4 | |
| - name: Install clang-format | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install clang-format-19 | |
| - name: Run clang-format | |
| run: clang-format-19 --Werror --dry-run *.{c,h} | |
| working-directory: trilogy-llvm/core | |
| check: | |
| name: check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the source code | |
| uses: actions/checkout@v4 | |
| - name: Install clang-tidy | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install clang-tidy-19 | |
| - name: Run clang-tidy | |
| run: clang-tidy-19 *.{c,h} -- | |
| working-directory: trilogy-llvm/core |