1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/MC/MachO/linker-option-2.s
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

19 lines
424 B
ArmAsm

// RUN: llvm-mc -n -triple x86_64-apple-darwin10 %s -filetype=obj | llvm-readobj -macho-linker-options | FileCheck %s
.linker_option "a"
.linker_option "a", "b"
// CHECK: Linker Options {
// CHECK: Size: 16
// CHECK: Strings [
// CHECK: Value: a
// CHECK: ]
// CHECK: }
// CHECK: Linker Options {
// CHECK: Size: 16
// CHECK: Strings [
// CHECK: Value: a
// CHECK: Value: b
// CHECK: ]
// CHECK: }