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.
12 lines
342 B
12 lines
342 B
4 months ago
|
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | llvm-readobj -r | FileCheck %s
|
||
|
|
||
|
// Test that this produces a R_X86_64_PLT32.
|
||
|
|
||
|
jmp foo@PLT
|
||
|
|
||
|
// CHECK: Relocations [
|
||
|
// CHECK-NEXT: Section ({{[^ ]+}}) {{[^ ]+}} {
|
||
|
// CHECK-NEXT: 0x{{[^ ]+}} R_X86_64_PLT32 {{[^ ]+}} 0x{{[^ ]+}}
|
||
|
// CHECK-NEXT: }
|
||
|
// CHECK-NEXT: ]
|