[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git] / llvm / test / CodeGen / MIR / Generic / machine-function-isssa-conflict.mir
blob362d54db7033feb05454795d7540d033d0a380e0
1 # RUN: not llc -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
3 # Test that computed properties are not conflicting with explicitly set
4 # properties
6 ---
7 # CHECK: error: {{.*}}: TestIsSSAOverrideConflict has explicit property IsSSA, but is not valid SSA
8 name:            TestIsSSAOverrideConflict
9 isSSA: true
10 body: |
11   bb.0:
12     %0:_(s32) = G_IMPLICIT_DEF
13     %0:_(s32) = G_IMPLICIT_DEF
14 ...