You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
444 B
22 lines
444 B
7 months ago
|
# REQUIRES: x86
|
||
|
|
||
|
## _edata points to the end of the last mapped initialized section.
|
||
|
|
||
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
||
|
# RUN: ld.lld %t.o -o %t --gc-sections
|
||
|
# RUN: llvm-objdump -t --section-headers %t | FileCheck %s
|
||
|
|
||
|
# CHECK: .data 00000008 000000000020215c DATA
|
||
|
|
||
|
# CHECK: 0000000000202164 g .data 0000000000000000 _edata
|
||
|
|
||
|
.text
|
||
|
.globl _start
|
||
|
_start:
|
||
|
.long .data - .
|
||
|
|
||
|
.data
|
||
|
.quad 0
|
||
|
|
||
|
.globl _edata
|