mirror of
https://github.com/jeremysrand/llvm-65816.git
synced 2024-11-18 23:05:00 +00:00
20 lines
1.0 KiB
LLVM
20 lines
1.0 KiB
LLVM
|
; llc -mtriple=i386-pc-win32 trivial.ll -filetype=obj -o trivial-object-test.coff-i386
|
||
|
; llc -mtriple=x86_64-pc-win32 trivial.ll -filetype=obj -o trivial-object-test.coff-x86-64
|
||
|
; llc -mtriple=i386-linux-gnu trivial.ll -filetype=obj -o trivial-object-test.elf-i386 -relocation-model=pic
|
||
|
; llc -mtriple=x86_64-linux-gnu trivial.ll -filetype=obj -o trivial-object-test.elf-x86-64 -relocation-model=pic
|
||
|
; llc -mtriple=i386-apple-darwin10 trivial.ll -filetype=obj -o trivial-object-test.macho-i386 -relocation-model=pic
|
||
|
; llc -mtriple=x86_64-apple-darwin10 trivial.ll -filetype=obj -o trivial-object-test.macho-x86-64 -relocation-model=pic
|
||
|
|
||
|
@.str = private unnamed_addr constant [13 x i8] c"Hello World\0A\00", align 1
|
||
|
|
||
|
define i32 @main() nounwind {
|
||
|
entry:
|
||
|
%call = tail call i32 @puts(i8* getelementptr inbounds ([13 x i8]* @.str, i32 0, i32 0)) nounwind
|
||
|
tail call void bitcast (void (...)* @SomeOtherFunction to void ()*)() nounwind
|
||
|
ret i32 0
|
||
|
}
|
||
|
|
||
|
declare i32 @puts(i8* nocapture) nounwind
|
||
|
|
||
|
declare void @SomeOtherFunction(...)
|