diff options
author | Geoffrey Keating <geoffk@apple.com> | 2003-02-28 23:06:10 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2003-02-28 23:06:10 +0000 |
commit | d8fad4ea49a49a7787891d1a6e7dbb81e2a09572 (patch) | |
tree | 3296383554cf8641e0ecd0dce811b757bb507ceb /gcc/cppfiles.c | |
parent | 9855905ceff516db0276b303406bf703236d4c42 (diff) | |
download | gcc-d8fad4ea49a49a7787891d1a6e7dbb81e2a09572.zip gcc-d8fad4ea49a49a7787891d1a6e7dbb81e2a09572.tar.gz gcc-d8fad4ea49a49a7787891d1a6e7dbb81e2a09572.tar.bz2 |
In gcc/: 2003-02-28 Geoffrey Keating <geoffk@apple.com>
In gcc/:
2003-02-28 Geoffrey Keating <geoffk@apple.com>
* doc/invoke.texi: Change .pch to .gch.
* cppfiles.c (open_file_pch): Likewise.
* gcc.c (default_compilers): Likewise.
In gcc/testsuite/:
2003-02-28 Geoffrey Keating <geoffk@apple.com>
* gcc.dg/pch/pch.exp: Change .pch to .gch.
* g++.dg/pch/pch.exp: Likewise.
From-SVN: r63587
Diffstat (limited to 'gcc/cppfiles.c')
-rw-r--r-- | gcc/cppfiles.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c index 203619f..1f5d6c3 100644 --- a/gcc/cppfiles.c +++ b/gcc/cppfiles.c @@ -1,5 +1,5 @@ /* Part of CPP library. (include file handling) - Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1998, + Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1998, 2003, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. Written by Per Bothner, 1994. Based on CCCP program by Paul Rubin, June 1986 @@ -362,7 +362,7 @@ open_file_pch (pfile, filename) splay_tree_node nd; memcpy (pchname, filename, namelen); - memcpy (pchname + namelen, ".pch", 5); + memcpy (pchname + namelen, ".gch", 5); nd = find_or_create_entry (pfile, pchname); file = (struct include_file *) nd->value; |