aboutsummaryrefslogtreecommitdiff
path: root/libcpp/directives.c
diff options
context:
space:
mode:
authorGabriel Dos Reis <gdr@integrable-solutions.net>2005-01-02 01:32:21 +0000
committerGabriel Dos Reis <gdr@gcc.gnu.org>2005-01-02 01:32:21 +0000
commita2566ae98d9df2df51b651dc404bae5d2ff54944 (patch)
treeebb05e721bd9965754a245ca7e4348b6356e87c5 /libcpp/directives.c
parent302904495d01ba8de1061edb1e2aec359ddc83a7 (diff)
downloadgcc-a2566ae98d9df2df51b651dc404bae5d2ff54944.zip
gcc-a2566ae98d9df2df51b651dc404bae5d2ff54944.tar.gz
gcc-a2566ae98d9df2df51b651dc404bae5d2ff54944.tar.bz2
internal.h: Update references to Cpp lib filenames.
* internal.h: Update references to Cpp lib filenames. * directives.c: Likewise. * init.c: Likewise. * macro.c: Likewise. * traditional.c: Likewise. From-SVN: r92799
Diffstat (limited to 'libcpp/directives.c')
-rw-r--r--libcpp/directives.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcpp/directives.c b/libcpp/directives.c
index fe1867d..6039862 100644
--- a/libcpp/directives.c
+++ b/libcpp/directives.c
@@ -326,7 +326,7 @@ directive_diagnostics (cpp_reader *pfile, const directive *dir, int indented)
/* Check if we have a known directive. INDENTED is nonzero if the
'#' of the directive was indented. This function is in this file
- to save unnecessarily exporting dtable etc. to cpplex.c. Returns
+ to save unnecessarily exporting dtable etc. to lex.c. Returns
nonzero if the line of tokens has been handled, zero if we should
continue processing the line. */
int
@@ -382,7 +382,7 @@ _cpp_handle_directive (cpp_reader *pfile, int indented)
does not cause '#define foo bar' to get executed when
compiled with -save-temps, we recognize directives in
- -fpreprocessed mode only if the # is in column 1. cppmacro.c
+ -fpreprocessed mode only if the # is in column 1. macro.c
puts a space in front of any '#' at the start of a macro. */
if (CPP_OPTION (pfile, preprocessed)
&& (indented || !(dir->flags & IN_I)))
@@ -503,7 +503,7 @@ lex_macro_node (cpp_reader *pfile)
return NULL;
}
-/* Process a #define directive. Most work is done in cppmacro.c. */
+/* Process a #define directive. Most work is done in macro.c. */
static void
do_define (cpp_reader *pfile)
{