2016-08-23 02:44:04 +08:00
|
|
|
# REQUIRES: x86
|
|
|
|
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
|
|
|
|
# RUN: echo "SECTIONS { }" > %t.script
|
2017-05-11 00:20:33 +08:00
|
|
|
# RUN: ld.lld %t.o -script %t.script -o %t
|
2019-05-01 13:49:01 +08:00
|
|
|
# RUN: llvm-readobj --symbols %t | FileCheck %s
|
2017-05-11 00:20:33 +08:00
|
|
|
# CHECK: Name: __ehdr_start (1)
|
|
|
|
# CHECK-NEXT: Value: 0x0
|
|
|
|
# CHECK-NEXT: Size: 0
|
|
|
|
# CHECK-NEXT: Binding: Local (0x0)
|
|
|
|
# CHECK-NEXT: Type: None (0x0)
|
|
|
|
# CHECK-NEXT: Other [ (0x2)
|
|
|
|
# CHECK-NEXT: STV_HIDDEN (0x2)
|
|
|
|
# CHECK-NEXT: ]
|
|
|
|
# CHECK-NEXT: Section: .text (0x1)
|
2016-08-23 02:44:04 +08:00
|
|
|
|
|
|
|
.text
|
2021-02-13 13:00:42 +08:00
|
|
|
.global __ehdr_start, _start
|
2016-08-23 02:44:04 +08:00
|
|
|
_start:
|
|
|
|
.quad __ehdr_start
|