zig/deps/lld/test/mach-o/exe-offsets.yaml
Andrew Kelley 4794281d64 embed LLD 5.0.0
This is 48aaa9f66120f72b5d7e4a90b32fee40a3386ce9 from the
git monorepo.
2017-08-27 17:46:59 -04:00

46 lines
1.0 KiB
YAML

# RUN: lld -flavor darwin -arch x86_64 %s -o %t -e start %p/Inputs/x86_64/libSystem.yaml
# RUN: llvm-readobj -sections %t | FileCheck %s
# Make sure data gets put at offset
--- !native
defined-atoms:
- name: start
scope: global
content: [ 90 ]
- name: _s1
type: data
content: [ 31, 32, 33, 34 ]
- name: _s2
type: zero-fill
size: 8192
- name: _s3
type: zero-fill
size: 100
- name: _s4
type: data
content: [ 01 ]
# CHECK-LABEL: Section {
# CHECK: Name: __text
# CHECK: Segment: __TEXT
# CHECK: Size: 0x1
# CHECK: Offset: 0
# CHECK-LABEL: Section {
# CHECK: Name: __data
# CHECK: Segment: __DATA
# CHECK: Size: 0x5
# CHECK: Offset: 4096
# CHECK-LABEL: Section {
# CHECK: Name: __bss
# CHECK: Segment: __DATA
# CHECK: Size: 0x2064
# CHECK: Offset: 0