diff options
author | Bruce Korb <bkorb@gnu.org> | 2000-04-30 23:59:45 +0000 |
---|---|---|
committer | Bruce Korb <korbb@gcc.gnu.org> | 2000-04-30 23:59:45 +0000 |
commit | 82c3a53ec9b06b9bce83135f6afc27c1e54d0e7d (patch) | |
tree | 035bcd87294c132eb2398d7db040e25aa90085a4 | |
parent | 4c1880265ee518c5b76f7e1a509f6dc1c78282e8 (diff) | |
download | gcc-82c3a53ec9b06b9bce83135f6afc27c1e54d0e7d.zip gcc-82c3a53ec9b06b9bce83135f6afc27c1e54d0e7d.tar.gz gcc-82c3a53ec9b06b9bce83135f6afc27c1e54d0e7d.tar.bz2 |
removed two stale entries
From-SVN: r33557
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/fixinc/inclhack.def | 42 |
2 files changed, 6 insertions, 39 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3d25a92..192d4d9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,6 +1,7 @@ 2000-40-30 Bruce Korb <bkorb@gnu.org> - * fixinc/inclhack.def: Added definitions needed by OSR5 + * fixinc/inclhack.def: Added definitions needed by OSR5, + removed two stale entries (defined away with OLD_CPP). * fixinc/inclhack.sh: regen * fixinc/fixincl.x: regen diff --git a/gcc/fixinc/inclhack.def b/gcc/fixinc/inclhack.def index 2852bd0..9349793 100644 --- a/gcc/fixinc/inclhack.def +++ b/gcc/fixinc/inclhack.def @@ -3,13 +3,11 @@ autogen definitions inclhack; -/* - -Define all the fixes we know about for repairing damaged headers. -Please see the README before adding or changing entries in this file. +/* Define all the fixes we know about for repairing damaged headers. + Please see the README before adding or changing entries in this file. -Set up a debug test so we can make the templates emit special -code while debugging these fixes: */ + Set up a debug test so we can make the templates emit special + code while debugging these fixes: */ #ifdef DEBUG FIXINC_DEBUG = yes; @@ -765,21 +763,6 @@ fix = { }; -#ifdef OLD_CPP -/* - * Remove the double-slash comments. The "double_slash" test will - * try to ignore C++ headers by checking for "CC/", "xx/" and "++/" - * in the file name. There are still the occasional C++ headers - * that have their comments stripped. Too bad. - */ -fix = { - hackname = no_double_slash; - c_test = "double_slash"; - c_fix = "no_double_slash"; -}; -#endif - - /* * Fix these Sun OS files to avoid an invalid identifier in an #ifdef. */ @@ -791,23 +774,6 @@ fix = { }; -#ifdef OLD_CPP -/* - * Fix else and endif directives that contain non-commentary text - */ -fix = { - hackname = end_else_label; - - /* - * Select files that contain '#endif' or '#else' directives with - * some sort of following junk. - */ - c_test = "else_endif_label"; - c_fix = "else_endif_label"; -}; -#endif - - /* * Fix HP's use of ../machine/inline.h to refer to * /usr/include/machine/inline.h |