aboutsummaryrefslogtreecommitdiff
path: root/tests/cases/unannotated.ll
diff options
context:
space:
mode:
authormax99x <max99x@gmail.com>2011-07-13 21:44:19 +0300
committermax99x <max99x@gmail.com>2011-07-13 21:44:19 +0300
commitfcacb4c13c73f2febfa7dabe2ffc70c727ea7762 (patch)
tree77a6cd18e3152f9ffff3e616ea7105a789d7d24d /tests/cases/unannotated.ll
parent8ffd5c52cab224dd582d5a1c2973696f41742280 (diff)
parentdc24fffc94606ccb566a3e6bb8dae5543f1ab790 (diff)
Merge branch 'master' of github.com:max99x/emscripten
Diffstat (limited to 'tests/cases/unannotated.ll')
-rw-r--r--tests/cases/unannotated.ll14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/cases/unannotated.ll b/tests/cases/unannotated.ll
new file mode 100644
index 00000000..96ce5468
--- /dev/null
+++ b/tests/cases/unannotated.ll
@@ -0,0 +1,14 @@
+; ModuleID = 'test.bc'
+target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32-n8:16:32"
+target triple = "i386-unknown-linux-gnu"
+
+@.str = private unnamed_addr constant [6 x i8] c"test\0A\00"
+
+define i32 @main() nounwind {
+ %1 = alloca i32, align 4
+ store i32 0, i32* %1
+ %2 = call i32 @puts(i8* getelementptr inbounds ([6 x i8]* @.str, i32 0, i32 0))
+ ret i32 0
+}
+
+declare i32 @puts(i8*)