brintos

brintos / llvm-project-archived public Read only

0
0
Text · 464 B · c113ea5 Raw
19 lines · plain
1# RUN: not llc -run-pass none -o /dev/null %s 2>&1 | FileCheck %s2 3# Test that computed properties are not conflicting with explicitly set4# properties5 6---7# CHECK: error: {{.*}}: TestNoPhisOverrideConflict has explicit property NoPhi, but contains at least one PHI8name:            TestNoPhisOverrideConflict9noPhis: true10tracksRegLiveness: true11body: |12  bb.0:13    %0:_(s32) = G_IMPLICIT_DEF14 15  bb.1:16    %1:_(s32) = PHI %0, %bb.0, %1, %bb.117    G_BR %bb.118...19