diff options
author | Ian Lance Taylor <ian@airs.com> | 2011-07-12 22:29:09 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2011-07-12 22:29:09 +0000 |
commit | 07aa62f2670a590b8f35a7308129bff58bf4a9d6 (patch) | |
tree | 15e9038da0603a28ee7e192ed1ddac4b5db6954d /gold/testsuite/protected_main_1.cc | |
parent | a7035dbbd10c5208e63cc3bc1b45f2dd8d16d7bb (diff) | |
download | binutils-07aa62f2670a590b8f35a7308129bff58bf4a9d6.zip binutils-07aa62f2670a590b8f35a7308129bff58bf4a9d6.tar.gz binutils-07aa62f2670a590b8f35a7308129bff58bf4a9d6.tar.bz2 |
PR gold/12980
* i386.cc (Target_i386::Scan::global): For a GOT reloc, use a
GLOB_DAT relocation rather than a RELATIVE relocation for a
protected symbol when creating a shared library.
* x86_64.cc (Target_x86_64::Scan::global): Likewise.
* testsuite/protected_1.cc (f2, get_f2_addr): New functions.
* testsuite/protected_main_1.cc (main): Test that protected
function has same address.
Diffstat (limited to 'gold/testsuite/protected_main_1.cc')
-rw-r--r-- | gold/testsuite/protected_main_1.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gold/testsuite/protected_main_1.cc b/gold/testsuite/protected_main_1.cc index cc387a4..271446f 100644 --- a/gold/testsuite/protected_main_1.cc +++ b/gold/testsuite/protected_main_1.cc @@ -28,9 +28,13 @@ extern bool t1(); extern bool t2(); +extern "C" int f2(); +extern int (*get_f2_addr()) (); + int main() { assert(t1()); assert(t2()); + assert(&f2 == get_f2_addr()); } |