aboutsummaryrefslogtreecommitdiff
path: root/gcc/cppfiles.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/cppfiles.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/cppfiles.c')
-rw-r--r--gcc/cppfiles.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c
index cb6ca5e..2592d4d 100644
--- a/gcc/cppfiles.c
+++ b/gcc/cppfiles.c
@@ -219,11 +219,11 @@ open_file (pfile, filename)
return 0;
}
- /* Don't reopen an idempotent file. */
+ /* Don't reopen an idempotent file. */
if (DO_NOT_REREAD (file))
return file;
- /* Don't reopen one which is already loaded. */
+ /* Don't reopen one which is already loaded. */
if (file->buffer != NULL)
return file;
@@ -1066,11 +1066,11 @@ _cpp_simplify_pathname (path)
return path;
#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
- /* Convert all backslashes to slashes. */
+ /* Convert all backslashes to slashes. */
for (from = path; *from; from++)
if (*from == '\\') *from = '/';
- /* Skip over leading drive letter if present. */
+ /* Skip over leading drive letter if present. */
if (ISALPHA (path[0]) && path[1] == ':')
from = to = &path[2];
else