diff options
| author | Jessica Paquette <jpaquette@apple.com> | 2019-05-01 22:50:11 +0000 |
|---|---|---|
| committer | Jessica Paquette <jpaquette@apple.com> | 2019-05-01 22:50:11 +0000 |
| commit | d010a3b63e0a1132ff5d41deb065d671282eadd0 (patch) | |
| tree | 600e8f08314e30a03be81b70f649664b8f9aa3bc | |
| parent | 16201040344e10c88d96b1330edaab8905620e52 (diff) | |
| download | bcm5719-llvm-d010a3b63e0a1132ff5d41deb065d671282eadd0.tar.gz bcm5719-llvm-d010a3b63e0a1132ff5d41deb065d671282eadd0.zip | |
Fix erroneous flag in GISel line for arm64-fast-isel-materialize.ll
Accidentally put a fast-isel-abort=2 instead of the GISel abort line.
This test doesn't actually fall back at all for GISel though, so remove the
fallback checks entirely.
llvm-svn: 359737
| -rw-r--r-- | llvm/test/CodeGen/AArch64/arm64-fast-isel-materialize.ll | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/AArch64/arm64-fast-isel-materialize.ll b/llvm/test/CodeGen/AArch64/arm64-fast-isel-materialize.ll index 3a8a31be152..8703b2e21ce 100644 --- a/llvm/test/CodeGen/AArch64/arm64-fast-isel-materialize.ll +++ b/llvm/test/CodeGen/AArch64/arm64-fast-isel-materialize.ll @@ -1,7 +1,6 @@ ; RUN: llc -O0 -fast-isel -fast-isel-abort=1 -verify-machineinstrs -mtriple=arm64-apple-darwin < %s | FileCheck %s -; RUN: llc -O0 -global-isel -fast-isel-abort=2 -pass-remarks-missed=gisel* -verify-machineinstrs -mtriple=arm64-apple-darwin %s -o - 2>&1 | FileCheck %s --check-prefixes=GISEL,FALLBACK +; RUN: llc -O0 -global-isel -verify-machineinstrs -mtriple=arm64-apple-darwin %s -o - | FileCheck %s --check-prefix=GISEL -; FALLBACK-NOT: remark: ; Materialize using fmov define float @fmov_float1() { |

