1; Input used for generating checked-in binaries (trivial.obj.*) 2; llc -mtriple=i386-pc-win32 trivial.ll -filetype=obj -o trivial.obj.coff-i386 3; llc -mtriple=x86_64-pc-win32 trivial.ll -filetype=obj -o trivial.obj.coff-x86-64 4; llc -mtriple=i386-linux-gnu trivial.ll -filetype=obj -o trivial.obj.elf-i386 -relocation-model=pic 5; llc -mtriple=x86_64-linux-gnu trivial.ll -filetype=obj -o trivial.obj.elf-x86-64 -relocation-model=pic 6; llc -mtriple=i386-apple-darwin10 trivial.ll -filetype=obj -o trivial.obj.macho-i386 -relocation-model=pic 7; llc -mtriple=x86_64-apple-darwin10 trivial.ll -filetype=obj -o trivial.obj.macho-x86-64 -relocation-model=pic 8; llc -mtriple=wasm32-unknown-unknown trivial.ll -filetype=obj -o trivial.obj.wasm 9 10@.str = private unnamed_addr constant [13 x i8] c"Hello World\0A\00", align 1 11 12define i32 @main() nounwind { 13entry: 14 %call = tail call i32 @puts(i8* getelementptr inbounds ([13 x i8], [13 x i8]* @.str, i32 0, i32 0)) nounwind 15 tail call void bitcast (void (...)* @SomeOtherFunction to void ()*)() nounwind 16 ret i32 0 17} 18 19declare i32 @puts(i8* nocapture) nounwind 20 21declare void @SomeOtherFunction(...) 22