summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/Inline/inline_constprop.ll
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/test/Transforms/Inline/inline_constprop.ll')
-rw-r--r--llvm/test/Transforms/Inline/inline_constprop.ll15
1 files changed, 15 insertions, 0 deletions
diff --git a/llvm/test/Transforms/Inline/inline_constprop.ll b/llvm/test/Transforms/Inline/inline_constprop.ll
new file mode 100644
index 00000000000..d76a88be37f
--- /dev/null
+++ b/llvm/test/Transforms/Inline/inline_constprop.ll
@@ -0,0 +1,15 @@
+; RUN: llvm-upgrade < %s | llvm-as | opt -inline -disable-output &&
+; 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
+}
OpenPOWER on IntegriCloud