Home | History | Annotate | Download | only in Object
      1 RUN: llvm-objdump -s %p/TestObjectFiles/trivial-object-test.coff-i386 \
      2 RUN:              | FileCheck %s -check-prefix COFF-i386
      3 RUN: llvm-objdump -s %p/TestObjectFiles/trivial-object-test.elf-i386 \
      4 RUN:              | FileCheck %s -check-prefix ELF-i386
      5 
      6 COFF-i386: trivial-object-test.coff-i386:     file format
      7 COFF-i386: Contents of section .text:
      8 COFF-i386:  0000 83ec0cc7 44240800 000000c7 04240000  ....D$.......$..
      9 COFF-i386:  0010 0000e800 000000e8 00000000 8b442408  .............D$.
     10 COFF-i386:  0020 83c40cc3                             ....
     11 COFF-i386: Contents of section .data:
     12 COFF-i386:  0000 48656c6c 6f20576f 726c6421 00        Hello World!.
     13 
     14 ELF-i386: trivial-object-test.elf-i386:     file format
     15 ELF-i386: Contents of section .text:
     16 ELF-i386:  0000 83ec0cc7 44240800 000000c7 04240000  ....D$.......$..
     17 ELF-i386:  0010 0000e8fc ffffffe8 fcffffff 8b442408  .............D$.
     18 ELF-i386:  0020 83c40cc3                             ....
     19 ELF-i386: Contents of section .rodata.str1.1:
     20 ELF-i386:  0024 48656c6c 6f20576f 726c6421 00        Hello World!.
     21