1 // REQUIRES: x86-registered-target
2 // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -emit-obj --mrelax-relocations %s -mrelocation-model pic -o %t
3 // RUN: llvm-readobj -r %t | FileCheck %s
4
5 // CHECK: R_X86_64_REX_GOTPCRELX foo
6
7 extern int foo;
8 int *f(void) {
9 return &foo;
10 }
11