Home | History | Annotate | Download | only in X86
      1 # RUN: llvm-mc -triple -x86_64-unknown-unknown -filetype obj -o - %s | llvm-readobj -s -sd \
      2 # RUN:   | FileCheck %s
      3 
      4 	.text
      5 	even_check:
      6 	.byte 0x00
      7 	.byte 0x01
      8 	.byte 0x02
      9 	.byte 0x03
     10 	.byte 0x04
     11 	.byte 0x05
     12 	.byte 0x06
     13 	.byte 0x07
     14 	.byte 0x08
     15 	.byte 0x09
     16 	.byte 0x10
     17 	.even
     18 	.byte 0x11
     19 	.byte 0x12
     20 	.even
     21 	.byte 0x13
     22 	.even
     23 	.byte 0x00
     24 	.byte 0x01
     25 	.byte 0x02
     26 	.byte 0x03
     27 	.byte 0x04
     28 	.byte 0x05
     29 	.byte 0x06
     30 	.byte 0x07
     31 	.byte 0x08
     32 	.byte 0x09
     33 	.byte 0x10
     34 	.byte 0x11
     35 	.byte 0x12
     36 	.byte 0x13
     37 	.byte 0x14
     38 	.byte 0x15
     39 
     40 # CHECK: Section {
     41 # CHECK:   Name: .text
     42 # CHECK:   SectionData (
     43 # CHECK:      0000: 00010203 04050607 08091090 11121390
     44 # CHECK:	  0010: 00010203 04050607 08091011 12131415
     45 # CHECK:   )
     46 # CHECK: }
     47 
     48