Home | History | Annotate | Download | only in MachO
      1 // RUN: llvm-mc -n -triple x86_64-apple-darwin10 %s -filetype=obj | macho-dump | FileCheck %s
      2 
      3 // CHECK: ('load_commands_size', 104)
      4 // CHECK: ('load_commands', [
      5 // CHECK:   # Load Command 1
      6 // CHECK:  (('command', 45)
      7 // CHECK:   ('size', 16)
      8 // CHECK:   ('count', 1)
      9 // CHECK:   ('_strings', [
     10 // CHECK: 	"a",
     11 // CHECK:   ])
     12 // CHECK:  ),
     13 // CHECK:   # Load Command 2
     14 // CHECK:  (('command', 45)
     15 // CHECK:   ('size', 16)
     16 // CHECK:   ('count', 2)
     17 // CHECK:   ('_strings', [
     18 // CHECK: 	"a",
     19 // CHECK: 	"b",
     20 // CHECK:   ])
     21 // CHECK:  ),
     22 // CHECK: ])
     23 
     24 .linker_option "a"
     25 .linker_option "a", "b"
     26