blob: dd3ec4886bb7c4264d5f0fccc56c32cbea705a7d [file] [log] [blame]
Rafael Espindolaf8f01c32016-05-29 02:01:14 +00001// RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -emit-obj --mrelax-relocations %s -mrelocation-model pic -o %t
2// RUN: llvm-readobj -r %t | FileCheck %s
3
4// CHECK: R_X86_64_REX_GOTPCRELX foo
5
6extern int foo;
7int *f(void) {
8 return &foo;
9}