aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/tools/llvm-readobj/MachO/Inputs/trivial.ll
blob: 5730501389c3c4b37875c645c10397e0efe44964 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; Input used for generating checked-in binaries (trivial.obj.*)
; llc -mtriple=i386-apple-darwin10 trivial.ll -filetype=obj -o trivial.obj.macho-i386 -relocation-model=pic
; llc -mtriple=x86_64-apple-darwin10 trivial.ll -filetype=obj -o trivial.obj.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(ptr @.str) nounwind
  tail call void @SomeOtherFunction() nounwind
  ret i32 0
}

declare i32 @puts(ptr nocapture) nounwind

declare void @SomeOtherFunction(...)