aboutsummaryrefslogtreecommitdiff
path: root/tests/cases/unannotated__noasm.ll
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cases/unannotated__noasm.ll')
-rw-r--r--tests/cases/unannotated__noasm.ll20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/cases/unannotated__noasm.ll b/tests/cases/unannotated__noasm.ll
new file mode 100644
index 00000000..d87b2e54
--- /dev/null
+++ b/tests/cases/unannotated__noasm.ll
@@ -0,0 +1,20 @@
+; 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"
+
+declare hidden zeroext i1 @_OptionParser(i8*, i8) ; separate test: check that we can compile this line (zeroext confused us)
+
+define i32 @main() nounwind {
+ %1 = alloca i32, align 4
+ store i32 0, i32* %1
+ %2 = call i32 @llvm.expect.i32(i32 0, i32 1)
+ %3 = call i32 @puts(i8* getelementptr inbounds ([6 x i8]* @.str, i32 0, i32 0))
+ ret i32 0
+}
+
+declare i32 @puts(i8*)
+
+declare i32 @llvm.expect.i32(i32, i32)
+