aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpplib.h
diff options
context:
space:
mode:
authorAlexandre Oliva <oliva@lsd.ic.unicamp.br>2000-02-27 07:57:29 +0000
committerAlexandre Oliva <aoliva@gcc.gnu.org>2000-02-27 07:57:29 +0000
commit656ac1103948f17cf59c5ff0caef23e51ff47a38 (patch)
treeba356ab51b707985be58f6261c5d261a51ca066f /gcc/cpplib.h
parent6aede5678763545abe158ca6000921015db57013 (diff)
downloadgcc-656ac1103948f17cf59c5ff0caef23e51ff47a38.zip
gcc-656ac1103948f17cf59c5ff0caef23e51ff47a38.tar.gz
gcc-656ac1103948f17cf59c5ff0caef23e51ff47a38.tar.bz2
cpplib.h (enum file_change_code): Added rename_file.
* cpplib.h (enum file_change_code): Added rename_file. * cpplib.c (do_line): If a filename is given, set file_change to rename_file. (output_line_command): If file_change is rename_file, always output a # directive with the file name. From-SVN: r32215
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r--gcc/cpplib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h
index 592093c..71726aa 100644
--- a/gcc/cpplib.h
+++ b/gcc/cpplib.h
@@ -699,7 +699,7 @@ extern void cpp_scan_buffer PARAMS ((cpp_reader *));
extern int check_macro_name PARAMS ((cpp_reader *, const U_CHAR *));
/* Last arg to output_line_command. */
-enum file_change_code {same_file, enter_file, leave_file};
+enum file_change_code {same_file, rename_file, enter_file, leave_file};
extern void output_line_command PARAMS ((cpp_reader *,
enum file_change_code));