diff options
author | korbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-29 14:35:50 +0000 |
---|---|---|
committer | korbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-29 14:35:50 +0000 |
commit | 90c7fd7a7d47eefd65ff8d8e026abe6a338dde69 (patch) | |
tree | 089bf7e443ea788dd810833602b874d8279266fa /gcc/fixinc/fixtests.c | |
parent | e564305476cbdc7abb400ed4435da7a1e0ef9b18 (diff) | |
download | gcc-90c7fd7a7d47eefd65ff8d8e026abe6a338dde69.tar.gz |
don't skip GLIBC files any more, more C++ header testing, corrected spelling of mach
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30704 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fixinc/fixtests.c')
-rw-r--r-- | gcc/fixinc/fixtests.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/fixinc/fixtests.c b/gcc/fixinc/fixtests.c index fa4470301d4..4ee9e86ee36 100644 --- a/gcc/fixinc/fixtests.c +++ b/gcc/fixinc/fixtests.c @@ -114,7 +114,9 @@ TEST_FOR_FIX_PROC_HEAD( double_slash_test ) return SKIP_FIX; if (strstr( fname, "xx/" ) != NULL) return SKIP_FIX; - if (strstr( fname, "++/" ) != NULL) + if (strstr( fname, "++" ) != NULL) + return SKIP_FIX; + if (strstr( text, "extern \"C++\"" ) != NULL) return SKIP_FIX; /* Now look for the comment markers in the text */ |