aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Generic/print-add.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Generic/print-add.ll')
-rw-r--r--test/CodeGen/Generic/print-add.ll18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/CodeGen/Generic/print-add.ll b/test/CodeGen/Generic/print-add.ll
new file mode 100644
index 0000000..ef224a1
--- /dev/null
+++ b/test/CodeGen/Generic/print-add.ll
@@ -0,0 +1,18 @@
+; RUN: llvm-upgrade < %s | llvm-as | llc
+
+%.str_1 = internal constant [4 x sbyte] c"%d\0A\00"
+
+declare int %printf(sbyte*, ...)
+
+int %main() {
+ %f = getelementptr [4 x sbyte]* %.str_1, long 0, long 0
+ %d = add int 1, 0
+ call int (sbyte*, ...)* %printf(sbyte* %f, int %d)
+ %e = add int 38, 2
+ call int (sbyte*, ...)* %printf(sbyte* %f, int %e)
+ %g = add int %d, %d
+ %h = add int %e, %g
+ call int (sbyte*, ...)* %printf(sbyte* %f, int %h)
+ ret int 0
+}
+