[InstCombine] Signed saturation patterns
[llvm-core.git] / test / tools / llvm-readobj / Inputs / trivial.ll
blobc27d0cb038c8a6432420ce0a5fa8b9d7c152e150
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
10 @.str = private unnamed_addr constant [13 x i8] c"Hello World\0A\00", align 1
12 define i32 @main() nounwind {
13 entry:
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
19 declare i32 @puts(i8* nocapture) nounwind
21 declare void @SomeOtherFunction(...)