1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/MC/MachO/linker-options.ll
Davide Italiano ee72831eb8 [llvm-readobj] MachO -- dump LinkerOptions load command.
Example output:

Linker Options {
  Size: 32
  Count: 2
  Strings [
    Value: -framework
    Value: Cocoa
  ]
}

There were only two tests using this -- so I converted them as part of
this commit rather than separately.

Differential Revision:	 http://reviews.llvm.org/D12702

llvm-svn: 247106
2015-09-09 00:21:18 +00:00

33 lines
934 B
LLVM

; RUN: llc -O0 -mtriple=x86_64-apple-darwin -o - %s > %t
; RUN: FileCheck --check-prefix=CHECK-ASM < %t %s
; CHECK-ASM: .linker_option "-lz"
; CHECK-ASM-NEXT: .linker_option "-framework", "Cocoa"
; RUN: llc -O0 -mtriple=x86_64-apple-darwin -filetype=obj -o - %s | llvm-readobj -macho-linker-options > %t
; RUN: FileCheck --check-prefix=CHECK-OBJ < %t %s
; CHECK-OBJ: Linker Options {
; CHECK-OBJ: Size: 16
; CHECK-OBJ: Strings [
; CHECK-OBJ: Value: -lz
; CHECK-OBJ: ]
; CHECK-OBJ: }
; CHECK-OBJ: Linker Options {
; CHECK-OBJ: Size: 32
; CHECK-OBJ: Strings [
; CHECK-OBJ: Value: -framework
; CHECK-OBJ: Value: Cocoa
; CHECK-OBJ: ]
; CHECK-OBJ: }
; CHECK-OBJ: Linker Options {
; CHECK-OBJ: Size: 24
; CHECK-OBJ: Strings [
; CHECK-OBJ: Value: -lmath
; CHECK-OBJ: ]
; CHECK-OBJ: }
!0 = !{i32 6, !"Linker Options", !{!{!"-lz"}, !{!"-framework", !"Cocoa"}, !{!"-lmath"}}}
!llvm.module.flags = !{ !0 }