[mlir] Update Ch-2.md (#121379)
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / machine-cse-ssa.mir
blobd32737f05a9b0eae9befafb2cb7a0324526a5121
1 # REQUIRES: asserts
2 # RUN: not --crash llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 -run-pass=machine-cse -o /dev/null %s 2>&1 | FileCheck -check-prefixes=ERR,ERR-LEGACY %s
3 # RUN: not --crash llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 -passes=machine-cse -o /dev/null %s 2>&1 | FileCheck -check-prefixes=ERR,ERR-NPM %s
5 # ERR-LEGACY: MachineFunctionProperties required by Machine Common Subexpression Elimination pass are not met by function not_ssa.
6 # ERR-NPM: MachineFunctionProperties required by MachineCSEPass pass are not met by function not_ssa.
7 # ERR: Required properties: IsSSA
8 # ERR-NEXT: Current properties: NoPHIs
10 ---
11 name: not_ssa
12 body: |
13   bb.0:
14     %0:sgpr_32 = S_MOV_B32 0
15     %0:sgpr_32 = S_MOV_B32 1
16     S_ENDPGM 0, implicit %0
17 ...