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