Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / tools / llvm-readobj / MachO / Inputs / trivial.ll
blob5730501389c3c4b37875c645c10397e0efe44964
1 ; Input used for generating checked-in binaries (trivial.obj.*)
2 ; llc -mtriple=i386-apple-darwin10 trivial.ll -filetype=obj -o trivial.obj.macho-i386 -relocation-model=pic
3 ; llc -mtriple=x86_64-apple-darwin10 trivial.ll -filetype=obj -o trivial.obj.macho-x86-64 -relocation-model=pic
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(...)