repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git]
/
llvm
/
test
/
tools
/
llvm-objcopy
/
ELF
/
binary-first-seg-offset-zero.test
blob
0f15c040e4ba7eb8ae9588b3bc329a389ce23178
1
# RUN: yaml2obj %s -o %t
2
# RUN: llvm-objcopy -R .note -O binary %t %t2
3
# RUN: od -Ax -t x1 %t2 | FileCheck %s
4
5
!ELF
6
FileHeader:
7
Class: ELFCLASS64
8
Data: ELFDATA2LSB
9
Type: ET_EXEC
10
Machine: EM_X86_64
11
Sections:
12
- Name: .note
13
Type: SHT_PROGBITS
14
Flags: [ SHF_ALLOC ]
15
Address: 0x1000
16
AddressAlign: 0x1000
17
Content: "32323232"
18
Size: 32
19
- Name: .rodata
20
Flags: [ SHF_ALLOC ]
21
Type: SHT_PROGBITS
22
Address: 0x1020
23
Size: 4064
24
Content: "DEADBEEF"
25
ProgramHeaders:
26
- Type: PT_LOAD
27
Flags: [ PF_R ]
28
VAddr: 0x1000
29
FirstSec: .note
30
LastSec: .rodata
31
32
# CHECK: 000000 de ad be ef