aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Transforms/Inline/inline_constprop.ll15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/Transforms/Inline/inline_constprop.ll b/test/Transforms/Inline/inline_constprop.ll
new file mode 100644
index 0000000000..edfb0905f9
--- /dev/null
+++ b/test/Transforms/Inline/inline_constprop.ll
@@ -0,0 +1,15 @@
+; RUN: llvm-as < %s | opt -inline -disable-output &&
+; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep callee &&
+; RUN: llvm-as < %s | 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
+}