blob: 25ece7611a3156770a30910a3834ff3252d8eec4 [file] [log] [blame]
Michael J. Spencer93fe4ae2011-10-25 22:30:58 +00001@.str = private unnamed_addr constant [13 x i8] c"Hello World\0A\00", align 1
2
3define i32 @main() nounwind {
4entry:
5 %call = tail call i32 @puts(i8* getelementptr inbounds ([13 x i8]* @.str, i32 0, i32 0)) nounwind
6 tail call void bitcast (void (...)* @SomeOtherFunction to void ()*)() nounwind
7 ret i32 0
8}
9
10declare i32 @puts(i8* nocapture) nounwind
11
12declare void @SomeOtherFunction(...)