diff options
author | max99x <max99x@gmail.com> | 2011-07-09 20:14:00 +0300 |
---|---|---|
committer | max99x <max99x@gmail.com> | 2011-07-09 20:14:00 +0300 |
commit | 11e404d7a8c76dbc1f10e24f4cee527f36d20092 (patch) | |
tree | db9f500e777b9eee54c4f2fb46a31976340a67de /tests/cases | |
parent | b5b48bab8bddb23a80031897d97f8942e702787a (diff) |
Polish for emscripten.py and its tests.
Diffstat (limited to 'tests/cases')
-rw-r--r-- | tests/cases/unannotated.ll | 14 | ||||
-rw-r--r-- | tests/cases/unannotated.txt | 1 |
2 files changed, 15 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*) diff --git a/tests/cases/unannotated.txt b/tests/cases/unannotated.txt new file mode 100644 index 00000000..9daeafb9 --- /dev/null +++ b/tests/cases/unannotated.txt @@ -0,0 +1 @@ +test |