* fixinc/inclhack.def (endif_label): Add additional selector for
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 11 Jun 1999 02:20:58 +0000 (02:20 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 11 Jun 1999 02:20:58 +0000 (02:20 +0000)
        more bogus stuff after #endif statements.
        * fixinc/inclhack.sh, fixinc/fixincl.x: Rebuilt.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@27486 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/fixinc/fixincl.x
gcc/fixinc/inclhack.def
gcc/fixinc/inclhack.sh

index 10f8e1f..4d818f6 100644 (file)
@@ -1,3 +1,9 @@
+Fri Jun 11 03:17:51 1999  Jeffrey A Law  (law@cygnus.com)
+
+       * fixinc/inclhack.def (endif_label): Add additional selector for
+       more bogus stuff after #endif statements.
+       * fixinc/inclhack.sh, fixinc/fixincl.x: Rebuilt.
+
 Thu Jun 10 20:44:36 1999  Mumit Khan  <khan@xraylith.wisc.edu>
 
        * i386/cygwin.h (SET_ASM_OP): Define.
index 8840413..be8a8f4 100644 (file)
@@ -742,7 +742,7 @@ tSCC zEndif_LabelName[] =
  *  content selection pattern - do fix if pattern found
  */
 tSCC zEndif_LabelSelect0[] =
-       "^[ \t]*#[ \t]*endif[ \t]+[!-.0-z{|}~]";
+       "^[ \t]*#[ \t]*endif[ \t]+[!-.0-z{|}~]|^[ \t]*#[ \t]*endif[ \t]+/[^*]";
 
 #define    ENDIF_LABEL_TEST_CT  1
 #define    ENDIF_LABEL_RE_CT    1
index 7f7401e..2abc7bd 100644 (file)
@@ -421,13 +421,19 @@ fix = {
      *  match '#endif / * foo * /', but it also wont match
      *  '#endif / done' either.
      *
+     *  We have a second regexp in the selector to detect
+     *  #endif followed by a / followed by anything other
+     *  than a *.  For example "#endif / * foo * /" or 
+     *  "#endif /% blah %/ which appear on OSF4.0A and AIX4.2
+     *  repsectively.
+     * 
      *  We use the pattern [!-.0-z{|}~] instead of [^/ \t] to match a noncomment
      *  following #else or #endif because some buggy egreps think [^/] matches
      *  newline, and they thus think `#else ' matches
      *  `#e[ndiflse]*[ \t]+[^/ \t]'.
      *  [!-.0-~] does not work properly on AIX 4.1.
      */
-    select   = "^[ \t]*#[ \t]*endif[ \t]+[!-.0-z\{\|\}\~]";
+    select   = "^[ \t]*#[ \t]*endif[ \t]+[!-.0-z\{\|\}\~]|^[ \t]*#[ \t]*endif[ \t]+/[^\*]";
 
     /*
      *  First, join the continued input lines.
index b993c8b..983941f 100755 (executable)
@@ -841,7 +841,7 @@ s%^\([      ]*#[    ]*else\)[       ]*[^/   ].*%\1%' \
     #
     # Fix  21:  Endif_Label
     #
-    if ( test -n "`egrep '^[   ]*#[    ]*endif[        ]+[!-.0-z{|}~]' ${file}`"
+    if ( test -n "`egrep '^[   ]*#[    ]*endif[        ]+[!-.0-z{|}~]|^[       ]*#[    ]*endif[        ]+/[^*]' ${file}`"
        ) > /dev/null 2>&1 ; then
     fixlist="${fixlist}
       endif_label"