aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/Inline/inline_constprop.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/Inline/inline_constprop.ll')
-rw-r--r--test/Transforms/Inline/inline_constprop.ll14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/Transforms/Inline/inline_constprop.ll b/test/Transforms/Inline/inline_constprop.ll
new file mode 100644
index 0000000..4b183e2
--- /dev/null
+++ b/test/Transforms/Inline/inline_constprop.ll
@@ -0,0 +1,14 @@
+; RUN: llvm-upgrade < %s | llvm-as | opt -inline | llvm-dis | not grep callee
+; RUN: llvm-upgrade < %s | llvm-as | opt -inline | llvm-dis | not grep div
+
+implementation
+
+internal int %callee(int %A, int %B) {
+ %C = div int %A, %B
+ ret int %C
+}
+
+int %test() {
+ %X = call int %callee(int 10, int 3)
+ ret int %X
+}