[X86] Use NSW/NUW flags on ISD::TRUNCATE nodes to improve X86 PACKSS/PACKUS lowering...
[llvm-project.git] / llvm / test / tools / llvm-readobj / COFF / Inputs / trivial.ll
blob2787d8d33fba8bb37e3a6803fea9176f83d5bc97
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
5 @.str = private unnamed_addr constant [13 x i8] c"Hello World\0A\00", align 1
7 define i32 @main() nounwind {
8 entry:
9   %call = tail call i32 @puts(ptr @.str) nounwind
10   tail call void @SomeOtherFunction() nounwind
11   ret i32 0
14 declare i32 @puts(ptr nocapture) nounwind
16 declare void @SomeOtherFunction(...)