aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-pragma.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2001-08-01 17:57:27 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2001-08-01 17:57:27 +0000
commitec5c56db8bd075907a7b60d2cfbf225eeb4ecc1f (patch)
tree86574f9925b42a9611cf138f95cf23040f8ab07f /gcc/c-pragma.c
parent60a78ccfac331b0d4ff71fcdddcfc302817eb110 (diff)
downloadgcc-ec5c56db8bd075907a7b60d2cfbf225eeb4ecc1f.zip
gcc-ec5c56db8bd075907a7b60d2cfbf225eeb4ecc1f.tar.gz
gcc-ec5c56db8bd075907a7b60d2cfbf225eeb4ecc1f.tar.bz2
alias.c: Fix comment formatting.
* alias.c: Fix comment formatting. * bitmap.c: Likewise. * builtins.c: Likewise. * calls.c: Likewise. * c-common.c: Likewise. * c-decl.c: Likewise. * c-dump.c: Likewise. * c-lex.c: Likewise. * collect2.c: Likewise. * combine.c: Likewise. * conflict.c: Likewise. * cppfiles.c: Likewise. * cppinit.c: Likewise. * cpplex.c: Likewise. * cpplib.c: Likewise. * cppmacro.c: Likewise. * cppspec.c: Likewise. * c-pragma.c: Likewise. * crtstuff.c: Likewise. * cse.c: Likewise. * cselib.c: Likewise. * c-semantics.c: Likewise. * c-typeck.c: Likewise. From-SVN: r44547
Diffstat (limited to 'gcc/c-pragma.c')
-rw-r--r--gcc/c-pragma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-pragma.c b/gcc/c-pragma.c
index 8be3a6b..c30a57b 100644
--- a/gcc/c-pragma.c
+++ b/gcc/c-pragma.c
@@ -53,7 +53,7 @@ static struct align_stack * alignment_stack = NULL;
#pragma pack(push,<n>) is encountered, this stores the value of
maximum_field_alignment in effect. When the final pop_alignment()
happens, we restore the value to this, not to a value of 0 for
- maximum_field_alignment. Value is in bits. */
+ maximum_field_alignment. Value is in bits. */
static int default_alignment;
#define SET_GLOBAL_ALIGNMENT(ALIGN) \
(default_alignment = maximum_field_alignment = (ALIGN))
@@ -84,7 +84,7 @@ push_alignment (alignment, id)
/* The current value of maximum_field_alignment is not necessarily
0 since there may be a #pragma pack(<n>) in effect; remember it
- so that we can restore it after the final #pragma pop(). */
+ so that we can restore it after the final #pragma pop(). */
if (alignment_stack == NULL)
default_alignment = maximum_field_alignment;