summaryrefslogtreecommitdiffstats
path: root/gold/testsuite/protected_main_1.cc
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>2011-07-12 22:29:09 +0000
committerIan Lance Taylor <ian@airs.com>2011-07-12 22:29:09 +0000
commit07aa62f2670a590b8f35a7308129bff58bf4a9d6 (patch)
tree15e9038da0603a28ee7e192ed1ddac4b5db6954d /gold/testsuite/protected_main_1.cc
parenta7035dbbd10c5208e63cc3bc1b45f2dd8d16d7bb (diff)
downloadppe42-binutils-07aa62f2670a590b8f35a7308129bff58bf4a9d6.tar.gz
ppe42-binutils-07aa62f2670a590b8f35a7308129bff58bf4a9d6.zip
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.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/gold/testsuite/protected_main_1.cc b/gold/testsuite/protected_main_1.cc
index cc387a4959..271446f8b6 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());
}
OpenPOWER on IntegriCloud