aboutsummaryrefslogtreecommitdiff
path: root/gcc/varasm.c
diff options
context:
space:
mode:
authorCatherine Moore <clm@cygnus.com>1998-06-23 05:45:40 +0000
committerCatherine Moore <clm@gcc.gnu.org>1998-06-23 01:45:40 -0400
commit83de03dfd8d9c845da0d3370839dbf1518c48f52 (patch)
tree2305a7da9d179f57f39261a4dca41747ba377f73 /gcc/varasm.c
parent254110c201b31e3d35bfe1f53e94f447f915c898 (diff)
downloadgcc-83de03dfd8d9c845da0d3370839dbf1518c48f52.zip
gcc-83de03dfd8d9c845da0d3370839dbf1518c48f52.tar.gz
gcc-83de03dfd8d9c845da0d3370839dbf1518c48f52.tar.bz2
Remove reference to warn_bss_align.
From-SVN: r20670
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r--gcc/varasm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c
index 1759f09..760aa77 100644
--- a/gcc/varasm.c
+++ b/gcc/varasm.c
@@ -1335,7 +1335,7 @@ assemble_variable (decl, top_level, at_end, dont_output_data)
* (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
#if !defined(ASM_OUTPUT_ALIGNED_COMMON) && !defined(ASM_OUTPUT_ALIGNED_BSS)
- if (warn_bss_align && (DECL_ALIGN (decl) / BITS_PER_UNIT) > rounded)
+ if ( (DECL_ALIGN (decl) / BITS_PER_UNIT) > rounded)
warning_with_decl
(decl, "requested alignment for %s is greater than implemented alignment of %d.",rounded);
#endif