forked from OSchip/llvm-project
15 lines
548 B
ArmAsm
15 lines
548 B
ArmAsm
// REQUIRES: x86
|
|
// RUN: llvm-mc -filetype=obj -triple=i686-pc-linux %s -o %t.o
|
|
// RUN: ld.lld --hash-style=sysv %t.o -o %t.so -shared
|
|
// RUN: llvm-readelf -S %t.so | FileCheck %s
|
|
// RUN: llvm-objdump -d %t.so | FileCheck --check-prefix=DISASM %s
|
|
|
|
movl $_GLOBAL_OFFSET_TABLE_, %eax
|
|
|
|
// CHECK: .got.plt PROGBITS 00003000
|
|
|
|
// DISASM: Disassembly of section .text:
|
|
// DISASM-NEXT: .text:
|
|
// DISASM-NEXT: 1000: {{.*}} movl $8192, %eax
|
|
// 0x3000 (.got.plt) - 0x1000 = 8192
|