22 lines · plain
1// RUN: not llvm-mc -triple x86_64-pc-linux %s -o %t.o -filetype=obj 2>&1 | FileCheck %s2 3 .quad foo@gotpcrel4// CHECK: 32 bit reloc applied to a field with a different size5// CHECK-NEXT: .quad foo@gotpcrel6 7 .quad foo@plt8// CHECK: 32 bit reloc applied to a field with a different size9// CHECK-NEXT: .quad foo@plt10 11 .quad foo@tlsld12// CHECK: 32 bit reloc applied to a field with a different size13// CHECK-NEXT: .quad foo@tlsld14 15 .quad foo@gottpoff16// CHECK: 32 bit reloc applied to a field with a different size17// CHECK-NEXT: .quad foo@gottpoff18 19 .quad foo@tlsgd20// CHECK: 32 bit reloc applied to a field with a different size21// CHECK-NEXT: .quad foo@tlsgd22