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