mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 20:01:28 +08:00
re PR middle-end/30174 (FAIL: g++.old-deja/g++.abi/cxa_vec.C execution test)
PR middle-end/30174 * varasm.c (notice_global_symbol): Treat global objects as weak when flag_shlib is true. From-SVN: r121551
This commit is contained in:
parent
b86a760aed
commit
2e3e8cea38
@ -1,3 +1,9 @@
|
||||
2007-02-03 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
|
||||
|
||||
PR middle-end/30174
|
||||
* varasm.c (notice_global_symbol): Treat global objects as weak when
|
||||
flag_shlib is true.
|
||||
|
||||
2007-02-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* emit-rtl.c (dconstpi): Delete.
|
||||
|
@ -1323,7 +1323,7 @@ notice_global_symbol (tree decl)
|
||||
|
||||
/* We win when global object is found, but it is useful to know about weak
|
||||
symbol as well so we can produce nicer unique names. */
|
||||
if (DECL_WEAK (decl) || DECL_ONE_ONLY (decl))
|
||||
if (DECL_WEAK (decl) || DECL_ONE_ONLY (decl) || flag_shlib)
|
||||
type = &weak_global_object_name;
|
||||
|
||||
if (!*type)
|
||||
|
Loading…
x
Reference in New Issue
Block a user