aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Transforms/SCCP/ipsccp-basic.ll13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/Transforms/SCCP/ipsccp-basic.ll b/test/Transforms/SCCP/ipsccp-basic.ll
new file mode 100644
index 0000000000..084ac71bee
--- /dev/null
+++ b/test/Transforms/SCCP/ipsccp-basic.ll
@@ -0,0 +1,13 @@
+; RUN: llvm-as < %s | opt -ipsccp | llvm-dis | grep -v 'ret int 17' | not grep ret
+
+implementation
+
+internal int %bar(int %A) {
+ %X = add int 1, 2
+ ret int %A
+}
+
+int %foo() {
+ %X = call int %bar(int 17)
+ ret int %X
+}