summaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstSimplify
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/InstSimplify')
-rw-r--r--test/Transforms/InstSimplify/pr12251.ll15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/Transforms/InstSimplify/pr12251.ll b/test/Transforms/InstSimplify/pr12251.ll
deleted file mode 100644
index f180f9f..0000000
--- a/test/Transforms/InstSimplify/pr12251.ll
+++ /dev/null
@@ -1,15 +0,0 @@
-; RUN: opt < %s -instsimplify -S | FileCheck %s
-
-define zeroext i1 @_Z3fooPb(i8* nocapture %x) {
-entry:
- %a = load i8* %x, align 1, !range !0
- %b = and i8 %a, 1
- %tobool = icmp ne i8 %b, 0
- ret i1 %tobool
-}
-
-; CHECK: %a = load i8* %x, align 1, !range !0
-; CHECK-NEXT: %tobool = icmp ne i8 %a, 0
-; CHECK-NEXT: ret i1 %tobool
-
-!0 = metadata !{i8 0, i8 2}