aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Edelsohn <edelsohn@gnu.org>2002-07-29 19:01:55 +0000
committerDavid Edelsohn <dje@gcc.gnu.org>2002-07-29 15:01:55 -0400
commitaf673a52ecdd01678e5e7c069249f8506631d983 (patch)
treededd4ae6b9ad9efd9ea088105f478636e64cfec4
parent6c208acd84403e4b98b780e8a6e8ed46bf765e46 (diff)
downloadgcc-af673a52ecdd01678e5e7c069249f8506631d983.zip
gcc-af673a52ecdd01678e5e7c069249f8506631d983.tar.gz
gcc-af673a52ecdd01678e5e7c069249f8506631d983.tar.bz2
varasm.c (assemble_variable): Narrow test for uninitialized without BSS target support.
* varasm.c (assemble_variable): Narrow test for uninitialized without BSS target support. From-SVN: r55843
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/varasm.c4
2 files changed, 8 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6d0731f..abcb381 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2002-07-29 David Edelsohn <edelsohn@gnu.org>
+
+ * varasm.c (assemble_variable): Narrow test for uninitialized
+ without BSS target support.
+
2002-07-29 Nathan Sidwell <nathan@codesourcery.com>
* profile.c: Add file comment describing the overall algorithm and
diff --git a/gcc/varasm.c b/gcc/varasm.c
index 435f6f7..ce6f731 100644
--- a/gcc/varasm.c
+++ b/gcc/varasm.c
@@ -1598,7 +1598,9 @@ assemble_variable (decl, top_level, at_end, dont_output_data)
in .bss, then we have to use .data. */
/* ??? We should handle .bss via select_section mechanisms rather than
via special target hooks. That would eliminate this special case. */
- else if (!DECL_COMMON (decl))
+ /* Duplicate BSS test in asm_emit_uninitialized instead of having it
+ return success or failure for that case. Shrug. */
+ else if (TREE_PUBLIC (decl) && !DECL_COMMON (decl))
;
#endif
else if (DECL_INITIAL (decl) == 0