reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux %s -o - | llvm-readobj -r | FileCheck %s

// these should not produce relaxable relocations

        movq foo@GOT, %rax
        mulq foo@GOTPCREL(%rip)
        .long foo@GOTPCREL

// CHECK:      Relocations [
// CHECK:        Section ({{.*}}) .rela.text {
// CHECK-NEXT:     R_X86_64_GOT32 foo
// CHECK-NEXT:     R_X86_64_GOTPCREL foo
// CHECK-NEXT:     R_X86_64_GOTPCREL foo
// CHECK-NEXT:   }
// CHECK-NEXT: ]