diff options
| author | Mikael Holmen <mikael.holmen@ericsson.com> | 2019-09-06 06:55:54 +0000 |
|---|---|---|
| committer | Mikael Holmen <mikael.holmen@ericsson.com> | 2019-09-06 06:55:54 +0000 |
| commit | dee0702b2a9d3769a32a420c36fddef556672a06 (patch) | |
| tree | 6535b529c6f0c5af11fcaf707fe3d812f810311b | |
| parent | 463c8e5eeb37e3b223f930cf809de0b78dae24ad (diff) | |
| download | bcm5719-llvm-dee0702b2a9d3769a32a420c36fddef556672a06.tar.gz bcm5719-llvm-dee0702b2a9d3769a32a420c36fddef556672a06.zip | |
[MIR] Change test case to read from stdin instead of file
The
;CHECK: bb
;CHECK-NEXT: %namedVReg1353:_(p0) = COPY $d0
parts of the test case failed when the tests were placed in a directory
including "bb" in the path, since the full path of the file is then
output in the
; ModuleID = '/repo/bb/
line which the CHECK matched on and then the CHECK-NEXT failed.
llvm-svn: 371171
| -rw-r--r-- | llvm/test/CodeGen/MIR/AArch64/mirnamer.mir | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/MIR/AArch64/mirnamer.mir b/llvm/test/CodeGen/MIR/AArch64/mirnamer.mir index fc1e1bbbd9a..87b563d2091 100644 --- a/llvm/test/CodeGen/MIR/AArch64/mirnamer.mir +++ b/llvm/test/CodeGen/MIR/AArch64/mirnamer.mir @@ -1,4 +1,4 @@ -# RUN: llc -mtriple aarch64-apple-ios -run-pass mir-namer -verify-machineinstrs -o - %s | FileCheck %s +# RUN: llc -x mir -mtriple aarch64-apple-ios -run-pass mir-namer -verify-machineinstrs -o - < %s | FileCheck %s --- name: foo |

