diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-16 14:20:10 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-16 14:20:10 +0000 |
commit | 7c2df24185b45306f38028ceb8bb87f28db72885 (patch) | |
tree | f080baaa17606be7e336f8de2af6b6c9acf31a1e /gcc/line-map.c | |
parent | 11cb6006c38a0ffde76935c424346b5d2bf15f2d (diff) | |
download | gcc-7c2df24185b45306f38028ceb8bb87f28db72885.tar.gz |
* c-decl.c, c-ppoutput.c, cpphash.h, cpplib.h, dbxout.c,
line-map.c, line-map.h, var-tracking.c: Fix comment
formatting.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77888 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/line-map.c')
-rw-r--r-- | gcc/line-map.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/line-map.c b/gcc/line-map.c index a7398bb98ee..ceb57d45e21 100644 --- a/gcc/line-map.c +++ b/gcc/line-map.c @@ -43,7 +43,7 @@ linemap_init (struct line_maps *set) set->max_column_hint = 0; } -/* Check for and warn about line_maps entered but not exited. */ +/* Check for and warn about line_maps entered but not exited. */ void linemap_check_files_exited (struct line_maps *set) @@ -242,7 +242,7 @@ linemap_lookup (struct line_maps *set, source_location line) mx = set->used; cached = &set->maps[mn]; - /* We should get a segfault if no line_maps have been added yet. */ + /* We should get a segfault if no line_maps have been added yet. */ if (line >= cached->start_location) { if (mn + 1 == mx || line < cached[1].start_location) |