summaryrefslogtreecommitdiff
path: root/test/MC/ELF/uleb.s
blob: d755cc23e392e480c595e41e0593e11a5d23d3a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// RUN: llvm-mc -filetype=obj -triple i686-pc-linux-gnu %s -o - | llvm-readobj -s -sd | FileCheck -check-prefix=ELF_32 %s
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | llvm-readobj -s -sd | FileCheck -check-prefix=ELF_64 %s
// RUN: llvm-mc -filetype=obj -triple i386-apple-darwin9 %s -o - | macho-dump  --dump-section-data | FileCheck -check-prefix=MACHO_32 %s
// RUN: llvm-mc -filetype=obj -triple x86_64-apple-darwin9 %s -o - | macho-dump  --dump-section-data | FileCheck -check-prefix=MACHO_64 %s

	.text
foo:
	.uleb128	0
	.uleb128	1
	.uleb128	127
	.uleb128	128
	.uleb128	16383
	.uleb128	16384

// ELF_32:   Name: .text
// ELF_32:   SectionData (
// ELF_32:     0000: 00017F80 01FF7F80 8001
// ELF_32:   )
// ELF_64:   Name: .text
// ELF_64:   SectionData (
// ELF_64:     0000: 00017F80 01FF7F80 8001
// ELF_64:   )
// MACHO_32: ('section_name', '__text\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00')
// MACHO_32: ('_section_data', '00017f80 01ff7f80 8001')
// MACHO_64: ('section_name', '__text\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00')
// MACHO_64: ('_section_data', '00017f80 01ff7f80 8001')