diff options
author | Jason Merrill <jason@redhat.com> | 2009-02-18 16:01:03 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2009-02-18 16:01:03 -0500 |
commit | 98b806924df9a7bb913cc5cc2d2e7fdc7e2a5de0 (patch) | |
tree | 0f64524f372d342649161f19523537146008f861 /gcc/target.h | |
parent | 1e80963d6176df27cd61f268ec14392cda8a309a (diff) | |
download | gcc-98b806924df9a7bb913cc5cc2d2e7fdc7e2a5de0.zip gcc-98b806924df9a7bb913cc5cc2d2e7fdc7e2a5de0.tar.gz gcc-98b806924df9a7bb913cc5cc2d2e7fdc7e2a5de0.tar.bz2 |
re PR target/39179 (Wrong code in c++ for const members initialized in external file)
PR target/39179
* tree-ssa-ccp.c (get_symbol_constant_value): Don't assume zero
value if DECL_EXTERNAL.
* tree-sra.c (sra_walk_gimple_assign): Likewise.
* target.h (gcc_target::binds_local_p): Clarify module.
* tree.h (TREE_PUBLIC): Clarify module.
From-SVN: r144270
Diffstat (limited to 'gcc/target.h')
-rw-r--r-- | gcc/target.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/target.h b/gcc/target.h index 21c46ad..10aaf4c 100644 --- a/gcc/target.h +++ b/gcc/target.h @@ -626,7 +626,7 @@ struct gcc_target bool (* in_small_data_p) (const_tree); /* True if EXP names an object for which name resolution must resolve - to the current module. */ + to the current executable or shared library. */ bool (* binds_local_p) (const_tree); /* Modify and return the identifier of a DECL's external name, |