diff options
author | Owen Anderson <resistor@mac.com> | 2011-04-14 21:35:50 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2011-04-14 21:35:50 +0000 |
commit | f6832bbda08b6975caa264de183bf3ee1d472aca (patch) | |
tree | c68ce481543c526392f0af9048788eb165ef6782 /test | |
parent | 481823aa819ea1dd25567ae616dca93056ef770a (diff) | |
download | external_llvm-f6832bbda08b6975caa264de183bf3ee1d472aca.zip external_llvm-f6832bbda08b6975caa264de183bf3ee1d472aca.tar.gz external_llvm-f6832bbda08b6975caa264de183bf3ee1d472aca.tar.bz2 |
Fix an infinite alternation in JumpThreading where two transforms would repeatedly undo each other. The solution is to perform more aggressive constant folding to make one of the edges just folded away rather than trying to thread it.
Fixes <rdar://problem/9284786>.
Discovered with CSmith.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129538 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Transforms/JumpThreading/2011-04-14-InfLoop.ll | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/Transforms/JumpThreading/2011-04-14-InfLoop.ll b/test/Transforms/JumpThreading/2011-04-14-InfLoop.ll new file mode 100644 index 0000000..46aaa00 --- /dev/null +++ b/test/Transforms/JumpThreading/2011-04-14-InfLoop.ll @@ -0,0 +1,31 @@ +; RUN: opt -jump-threading < %s +; <rdar://problem/9284786> + +%0 = type <{ i64, i16, i64, i8, i8 }> + +@g_338 = external global %0, align 8 + +define void @func_1() nounwind ssp { +entry: + ret void + +for.cond1177: + %inc1187 = add nsw i32 0, 1 + %cmp1179 = icmp slt i32 %inc1187, 5 + br i1 %cmp1179, label %for.cond1177, label %land.rhs1320 + +land.rhs1320: + %tmp1324 = volatile load i64* getelementptr inbounds (%0* @g_338, i64 0, i32 2), align 1, !tbaa !0 + br label %if.end.i + +if.end.i: + %tobool.pr.i = phi i1 [ false, %if.end.i ], [ false, %land.rhs1320 ] + br i1 %tobool.pr.i, label %return, label %if.end.i + +return: + ret void +} + +!0 = metadata !{metadata !"long long", metadata !1} +!1 = metadata !{metadata !"omnipotent char", metadata !2} +!2 = metadata !{metadata !"Simple C/C++ TBAA", null} |