diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-02-16 14:20:10 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-02-16 14:20:10 +0000 |
commit | 9ac974606795ef764ada5241981be2c899dc5586 (patch) | |
tree | f080baaa17606be7e336f8de2af6b6c9acf31a1e /gcc/line-map.c | |
parent | 875427f0e6654e436c6a153d5435764a39dc5bbf (diff) | |
download | gcc-9ac974606795ef764ada5241981be2c899dc5586.zip gcc-9ac974606795ef764ada5241981be2c899dc5586.tar.gz gcc-9ac974606795ef764ada5241981be2c899dc5586.tar.bz2 |
c-decl.c, [...]: Fix comment formatting.
* c-decl.c, c-ppoutput.c, cpphash.h, cpplib.h, dbxout.c,
line-map.c, line-map.h, var-tracking.c: Fix comment
formatting.
From-SVN: r77888
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 a7398bb..ceb57d4 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) |