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.
19 lines
420 B
19 lines
420 B
7 months ago
|
# REQUIRES: x86
|
||
|
|
||
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
||
|
# RUN: ld.lld %t.o -o %t.so --gc-sections -shared
|
||
|
# RUN: llvm-readobj --dyn-symbols %t.so | FileCheck %s
|
||
|
|
||
|
# CHECK: Name: _end
|
||
|
# CHECK-NEXT: Value:
|
||
|
# CHECK-NEXT: Size:
|
||
|
# CHECK-NEXT: Binding: Global
|
||
|
# CHECK-NEXT: Type: None
|
||
|
# CHECK-NEXT: Other:
|
||
|
# CHECK-NEXT: Section: .data
|
||
|
|
||
|
.data
|
||
|
.globl g
|
||
|
g:
|
||
|
.quad _end
|