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