blob: 2cd7ec89e2460882838a1b0dd83d770ff12b7dc1 [file] [log] [blame]
Eric Christopher9cad53c2013-04-03 18:31:38 +00001; llc -mtriple=i386-pc-win32 trivial.ll -filetype=obj -o trivial-object-test.coff-i386
2; llc -mtriple=x86_64-pc-win32 trivial.ll -filetype=obj -o trivial-object-test.coff-x86-64
3; llc -mtriple=i386-linux-gnu trivial.ll -filetype=obj -o trivial-object-test.elf-i386 -relocation-model=pic
4; llc -mtriple=x86_64-linux-gnu trivial.ll -filetype=obj -o trivial-object-test.elf-x86-64 -relocation-model=pic
5; llc -mtriple=i386-apple-darwin10 trivial.ll -filetype=obj -o trivial-object-test.macho-i386 -relocation-model=pic
6; llc -mtriple=x86_64-apple-darwin10 trivial.ll -filetype=obj -o trivial-object-test.macho-x86-64 -relocation-model=pic
7
8@.str = private unnamed_addr constant [13 x i8] c"Hello World\0A\00", align 1
9
10define i32 @main() nounwind {
11entry:
12 %call = tail call i32 @puts(i8* getelementptr inbounds ([13 x i8]* @.str, i32 0, i32 0)) nounwind
13 tail call void bitcast (void (...)* @SomeOtherFunction to void ()*)() nounwind
14 ret i32 0
15}
16
17declare i32 @puts(i8* nocapture) nounwind
18
19declare void @SomeOtherFunction(...)