OLD | NEW |
1 ; Test that a bad phi instruction is caught. | 1 ; Test that a bad phi instruction is caught. |
2 ; https://code.google.com/p/nativeclient/issues/detail?id=4304 | 2 ; https://code.google.com/p/nativeclient/issues/detail?id=4304 |
3 | 3 |
4 RUN: %p2i --expect-fail --tbc -i %p/Input/phi-invalid.tbc --insts 2>&1 \ | 4 RUN: %p2i --expect-fail --tbc -i %p/Input/phi-invalid.tbc --insts 2>&1 \ |
5 RUN: --filetype=obj --args -o /dev/null \ | 5 RUN: --filetype=obj --args -o /dev/null \ |
| 6 RUN: -allow-externally-defined-symbols \ |
6 RUN: | FileCheck --check-prefix=BADPHI %s | 7 RUN: | FileCheck --check-prefix=BADPHI %s |
7 | 8 |
8 ; BADPHI: Phi error: | 9 ; BADPHI: Phi error: |
OLD | NEW |