summaryrefslogtreecommitdiff
path: root/test/Transforms/StructurizeCFG/invert-constantexpr.ll
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2016-07-23 20:41:05 +0000
committerDimitry Andric <dim@FreeBSD.org>2016-07-23 20:41:05 +0000
commit01095a5d43bbfde13731688ddcf6048ebb8b7721 (patch)
tree4def12e759965de927d963ac65840d663ef9d1ea /test/Transforms/StructurizeCFG/invert-constantexpr.ll
parentf0f4822ed4b66e3579e92a89f368f8fb860e218e (diff)
Diffstat (limited to 'test/Transforms/StructurizeCFG/invert-constantexpr.ll')
-rw-r--r--test/Transforms/StructurizeCFG/invert-constantexpr.ll30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/Transforms/StructurizeCFG/invert-constantexpr.ll b/test/Transforms/StructurizeCFG/invert-constantexpr.ll
new file mode 100644
index 0000000000000..fc50a5a90a7f4
--- /dev/null
+++ b/test/Transforms/StructurizeCFG/invert-constantexpr.ll
@@ -0,0 +1,30 @@
+; RUN: opt -S -o - -structurizecfg < %s | FileCheck %s
+
+; CHECK-LABEL: @invert_constantexpr_condition(
+; CHECK: %tmp5 = or i1 %tmp4, icmp eq (i32 bitcast (float fadd (float undef, float undef) to i32), i32 0)
+; CHECK: [ icmp ne (i32 bitcast (float fadd (float undef, float undef) to i32), i32 0), %bb ]
+define void @invert_constantexpr_condition(i32 %arg, i32 %arg1) #0 {
+bb:
+ %tmp = icmp eq i32 %arg, 0
+ br i1 icmp eq (i32 bitcast (float fadd (float undef, float undef) to i32), i32 0), label %bb2, label %bb6
+
+bb2:
+ br i1 %tmp, label %bb3, label %bb6
+
+bb3:
+ %tmp4 = phi i1 [ %tmp7, %bb6 ], [ undef, %bb2 ]
+ %tmp5 = or i1 %tmp4, icmp eq (i32 bitcast (float fadd (float undef, float undef) to i32), i32 0)
+ br i1 %tmp5, label %bb8, label %bb8
+
+bb6:
+ %tmp7 = icmp slt i32 %arg, %arg1
+ br label %bb3
+
+bb8:
+ ret void
+}
+
+declare i32 @llvm.amdgcn.workitem.id.x() #1
+
+attributes #0 = { nounwind }
+attributes #1 = { nounwind readnone }