aboutsummaryrefslogtreecommitdiff
path: root/gcc/varasm.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2001-08-17 21:23:12 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2001-08-17 21:23:12 +0000
commit2d76cb1aba961fe2dc84fd3b1dad04181affd103 (patch)
treed04df8e015f11f7c3f1a689524aaa53d9d41c76a /gcc/varasm.c
parent171262081c9cd444023acbd55ef265e9cffcd47b (diff)
downloadgcc-2d76cb1aba961fe2dc84fd3b1dad04181affd103.zip
gcc-2d76cb1aba961fe2dc84fd3b1dad04181affd103.tar.gz
gcc-2d76cb1aba961fe2dc84fd3b1dad04181affd103.tar.bz2
sbitmap.c: Fix comment formatting.
* sbitmap.c: Fix comment formatting. * sched-deps.c: Likewise. * sibcall.c: Likewise. * simplify-rtx.c: Likewise. * ssa.c: Likewise. * ssa-ccp.c: Likewise. * stor-layout.c: Likewise. * timevar.c: Likewise. * toplev.c: Likewise. * unwind-dw2.c: Likewise. * unwind-dw2-fde.c: Likewise. * varasm.c: Likewise. From-SVN: r44983
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r--gcc/varasm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c
index c3a6322..8b34062 100644
--- a/gcc/varasm.c
+++ b/gcc/varasm.c
@@ -803,7 +803,7 @@ make_decl_rtl (decl, asmspec)
"register name given for non-register variable `%s'");
/* Specifying a section attribute on a variable forces it into a
- non-.bss section, and thus it cannot be common. */
+ non-.bss section, and thus it cannot be common. */
if (TREE_CODE (decl) == VAR_DECL
&& DECL_SECTION_NAME (decl) != NULL_TREE
&& DECL_INITIAL (decl) == NULL_TREE
@@ -1754,7 +1754,7 @@ assemble_static_space (size)
{
/* Round size up to multiple of BIGGEST_ALIGNMENT bits
so that each uninitialized object starts on such a boundary. */
- /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
+ /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
int rounded ATTRIBUTE_UNUSED
= ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
/ (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
@@ -2473,7 +2473,7 @@ const_hash (exp)
return const_hash (TREE_OPERAND (exp, 0)) * 7 + 2;
default:
- /* A language specific constant. Just hash the code. */
+ /* A language specific constant. Just hash the code. */
return (int) code % MAX_HASH_TABLE;
}
@@ -4466,7 +4466,7 @@ output_constructor (exp, size)
There is always a maximum of one element in the chain LINK for unions
(even if the initializer in a source program incorrectly contains
- more one). */
+ more one). */
for (link = CONSTRUCTOR_ELTS (exp);
link;
link = TREE_CHAIN (link),