aboutsummaryrefslogtreecommitdiff
path: root/test/ELF/end-update.s
blob: afb137fd2d73ae7034d7f586426a63d80ae77266 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Should set the value of the "end" symbol if it is undefined.
// REQUIRES: x86

// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
// RUN: ld.lld %t.o -o %t
// RUN: llvm-readobj -sections -symbols %t | FileCheck %s

// CHECK: Sections [
// CHECK:     Name: .bss
// CHECK-NEXT:     Type:
// CHECK-NEXT:     Flags [
// CHECK-NEXT:       SHF_ALLOC
// CHECK-NEXT:       SHF_WRITE
// CHECK-NEXT:     ]
// CHECK-NEXT:     Address: 0x202000
// CHECK-NEXT:     Offset:
// CHECK-NEXT:     Size: 6
// CHECK: ]
// CHECK: Symbols [
// CHECK:     Name: end
// CHECK-NEXT:     Value: 0x202006
// CHECK: ]

.global _start,end
.text
_start:
    nop
.bss
    .space 6