aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/runner.py3
-rw-r--r--tests/unannotated.ll14
2 files changed, 17 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 225e6671..62aab94d 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -2673,6 +2673,9 @@ if 'benchmark' not in sys.argv:
# This test *should* fail
assert 'Assertion failed' in str(e), str(e)
+ def test_unannotated(self):
+ self.do_ll_test(path_from_root('tests', 'unannotated.ll'), 'test\n')
+
def test_linespecific(self):
global COMPILER_TEST_OPTS; COMPILER_TEST_OPTS = ['-g']
diff --git a/tests/unannotated.ll b/tests/unannotated.ll
new file mode 100644
index 00000000..96ce5468
--- /dev/null
+++ b/tests/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*)