Clang Project

clang_source_code/test/CodeGen/relax.c
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
7extern int foo;
8int *f(void) {
9  return &foo;
10}
11