aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/AArch64/fast-isel-assume.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/AArch64/fast-isel-assume.ll')
-rw-r--r--test/CodeGen/AArch64/fast-isel-assume.ll14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/CodeGen/AArch64/fast-isel-assume.ll b/test/CodeGen/AArch64/fast-isel-assume.ll
deleted file mode 100644
index d39a907407db..000000000000
--- a/test/CodeGen/AArch64/fast-isel-assume.ll
+++ /dev/null
@@ -1,14 +0,0 @@
-; RUN: llc -mtriple=aarch64-- -fast-isel -fast-isel-abort=4 -verify-machineinstrs < %s | FileCheck %s
-
-; Check that we ignore the assume intrinsic.
-
-; CHECK-LABEL: test:
-; CHECK: // BB#0:
-; CHECK-NEXT: ret
-define void @test(i32 %a) {
- %tmp0 = icmp slt i32 %a, 0
- call void @llvm.assume(i1 %tmp0)
- ret void
-}
-
-declare void @llvm.assume(i1)