aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/LICM/2003-08-04-TrappingInstOkHoist.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/LICM/2003-08-04-TrappingInstOkHoist.ll')
-rw-r--r--test/Transforms/LICM/2003-08-04-TrappingInstOkHoist.ll20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/Transforms/LICM/2003-08-04-TrappingInstOkHoist.ll b/test/Transforms/LICM/2003-08-04-TrappingInstOkHoist.ll
new file mode 100644
index 0000000..2c784c0
--- /dev/null
+++ b/test/Transforms/LICM/2003-08-04-TrappingInstOkHoist.ll
@@ -0,0 +1,20 @@
+; This testcase tests to make sure a trapping instruction is hoisted when
+; it is guaranteed to execute.
+;
+; RUN: llvm-upgrade < %s | llvm-as | opt -licm | llvm-dis | %prcontext "test" 2 | grep div
+
+%X = global int 0
+declare void %foo(int)
+
+int %test(bool %c) {
+ %A = load int *%X
+ br label %Loop
+Loop:
+ %B = div int 4, %A ;; Should have hoisted this div!
+ call void %foo(int %B)
+ br bool %c, label %Loop, label %Out
+
+Out:
+ %C = sub int %A, %B
+ ret int %C
+}