diff options
author | kripken <alonzakai@gmail.com> | 2011-07-09 10:28:19 -0700 |
---|---|---|
committer | kripken <alonzakai@gmail.com> | 2011-07-09 10:28:19 -0700 |
commit | c79828f6b89cc64cb21ebfa00454b8ce26718cf8 (patch) | |
tree | 2f7250c054c7ff46088b3877b619f5715699b66f /tests/cases/unannotated.ll | |
parent | 4fe5b2b7b6d9695a81880922ee249c620880b5d2 (diff) | |
parent | 11e404d7a8c76dbc1f10e24f4cee527f36d20092 (diff) |
Merge pull request #47 from max99x/master
Emscripten.py rewrite
Diffstat (limited to 'tests/cases/unannotated.ll')
-rw-r--r-- | tests/cases/unannotated.ll | 14 |
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*) |