[DAG] TransformFPLoadStorePair - early out if we're not loading a simple type
[llvm-project.git] / llvm / test / MC / ELF / local-reloc.s
blob5f8a2c816de2d893589c45980ee774e7d08e0b9a
1 // RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | llvm-readobj -S -r --symbols - | FileCheck %s
3 // Test that relocations with local symbols are represented as relocations
4 // with the section. They should be equivalent, but gas behaves like this.
6 movl foo, %r14d
7 foo:
9 // CHECK: Relocations [
10 // CHECK: Section {{.*}} .rela.text {
11 // CHECK-NEXT: 0x{{[^ ]+}} R_X86_64_32S .text 0x{{[^ ]+}}
12 // CHECK-NEXT: }
13 // CHECK-NEXT: ]