3 # RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
4 # RUN: echo "SECTIONS { mysym = .; }" > %t.script
6 # RUN: ld.lld %t.o -o %t-default.elf -T %t.script
7 # RUN: llvm-readobj --symbols %t-default.elf | FileCheck %s --check-prefix=DEFAULT
9 # DEFAULT-NEXT: Value: 0x0
11 # RUN: ld.lld %t.o -o %t-switch.elf -T %t.script --image-base=0x100000
12 # RUN: llvm-readobj --symbols %t-switch.elf | FileCheck %s --check-prefix=SWITCH
14 # SWITCH-NEXT: Value: 0x100000