[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git] / llvm / test / CodeGen / MIR / Generic / machine-function-nophis-conflict.mir
blobc113ea59a904963ae00ed5fd746ca6a122b09c22
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: {{.*}}: TestNoPhisOverrideConflict has explicit property NoPhi, but contains at least one PHI
8 name:            TestNoPhisOverrideConflict
9 noPhis: true
10 tracksRegLiveness: true
11 body: |
12   bb.0:
13     %0:_(s32) = G_IMPLICIT_DEF
15   bb.1:
16     %1:_(s32) = PHI %0, %bb.0, %1, %bb.1
17     G_BR %bb.1
18 ...