summaryrefslogtreecommitdiff
path: root/gcc/c-dump.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-dump.c
parent60a78ccfac331b0d4ff71fcdddcfc302817eb110 (diff)
downloadgcc-ec5c56db8bd075907a7b60d2cfbf225eeb4ecc1f.tar.gz
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-dump.c')
-rw-r--r--gcc/c-dump.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/gcc/c-dump.c b/gcc/c-dump.c
index 095626699d4..84c99cc8f4d 100644
--- a/gcc/c-dump.c
+++ b/gcc/c-dump.c
@@ -139,9 +139,9 @@ queue_and_dump_type (di, t)
}
/* Dump column control */
-#define SOL_COLUMN 25 /* Start of line column. */
-#define EOL_COLUMN 55 /* End of line column. */
-#define COLUMN_ALIGNMENT 15 /* Alignment. */
+#define SOL_COLUMN 25 /* Start of line column. */
+#define EOL_COLUMN 55 /* End of line column. */
+#define COLUMN_ALIGNMENT 15 /* Alignment. */
/* Insert a new line in the dump output, and indent to an appropriate
place to start printing more fields. */
@@ -736,7 +736,7 @@ dequeue_and_dump (di)
}
/* Return non-zero if FLAG has been specified for the dump, and NODE
- is not the root node of the dump. */
+ is not the root node of the dump. */
int dump_flag (di, flag, node)
dump_info_p di;
@@ -786,16 +786,16 @@ dump_node (t, flags, stream)
splay_tree_delete (di.nodes);
}
-/* Define a tree dump switch. */
+/* Define a tree dump switch. */
struct dump_file_info
{
- const char *suffix; /* suffix to give output file. */
+ const char *suffix; /* suffix to give output file. */
const char *swtch; /* command line switch */
int flags; /* user flags */
int state; /* state of play */
};
-/* Table of tree dump switches. */
+/* Table of tree dump switches. */
static struct dump_file_info dump_files[TDI_end] =
{
{".tu", "dump-translation-unit", 0, 0},
@@ -808,7 +808,7 @@ static struct dump_file_info dump_files[TDI_end] =
/* Begin a tree dump for PHASE. Stores any user supplied flag in
*FLAG_PTR and returns a stream to write to. If the dump is not
enabled, returns NULL.
- Multiple calls will reopen and append to the dump file. */
+ Multiple calls will reopen and append to the dump file. */
FILE *
dump_begin (phase, flag_ptr)
@@ -834,7 +834,7 @@ dump_begin (phase, flag_ptr)
return stream;
}
-/* Returns non-zero if tree dump PHASE is enabled. */
+/* Returns non-zero if tree dump PHASE is enabled. */
int
dump_enabled_p (phase)
@@ -843,7 +843,7 @@ dump_enabled_p (phase)
return dump_files[phase].state;
}
-/* Returns the switch name of PHASE. */
+/* Returns the switch name of PHASE. */
const char *
dump_flag_name (phase)
@@ -853,7 +853,7 @@ dump_flag_name (phase)
}
/* Finish a tree dump for PHASE. STREAM is the stream created by
- dump_begin. */
+ dump_begin. */
void
dump_end (phase, stream)
@@ -864,7 +864,7 @@ dump_end (phase, stream)
}
/* Parse ARG as a dump switch. Return non-zero if it is, and store the
- relevant details in the dump_files array. */
+ relevant details in the dump_files array. */
int
dump_switch_p (arg)