aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/ADCE/2002-01-31-UseStuckAround.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/ADCE/2002-01-31-UseStuckAround.ll')
-rw-r--r--test/Transforms/ADCE/2002-01-31-UseStuckAround.ll13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/Transforms/ADCE/2002-01-31-UseStuckAround.ll b/test/Transforms/ADCE/2002-01-31-UseStuckAround.ll
new file mode 100644
index 0000000..43462fa
--- /dev/null
+++ b/test/Transforms/ADCE/2002-01-31-UseStuckAround.ll
@@ -0,0 +1,13 @@
+; RUN: opt < %s -adce
+
+define i32 @"main"(i32 %argc)
+begin
+ br label %2
+
+ %retval = phi i32 [ %argc, %2 ] ; <i32> [#uses=2]
+ %two = add i32 %retval, %retval ; <i32> [#uses=1]
+ ret i32 %two
+
+ br label %1
+end
+