aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorZack Weinberg <zack@gcc.gnu.org>2000-04-17 23:59:58 +0000
committerZack Weinberg <zack@gcc.gnu.org>2000-04-17 23:59:58 +0000
commit43e76f81156907f3360cdd8315c09fd3b3157393 (patch)
tree292a398e05d916e6175847a1517afaf6470ab50b /gcc
parent82234d29c895cff183e8277e1ce944e97e3050c0 (diff)
downloadgcc-43e76f81156907f3360cdd8315c09fd3b3157393.zip
gcc-43e76f81156907f3360cdd8315c09fd3b3157393.tar.gz
gcc-43e76f81156907f3360cdd8315c09fd3b3157393.tar.bz2
Regen after last change
From-SVN: r33218
Diffstat (limited to 'gcc')
-rw-r--r--gcc/cexp.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/gcc/cexp.c b/gcc/cexp.c
index c278565..9e8fdd5 100644
--- a/gcc/cexp.c
+++ b/gcc/cexp.c
@@ -335,7 +335,7 @@ static const short yycheck[] = { 4,
26, 27, 23, 24, 25, 26, 27, 0, 9
};
/* -*-C-*- Note some compilers choke on comments on `#line' lines. */
-#line 3 "/usr/lib/bison.simple"
+#line 3 "/usr/share/misc/bison.simple"
/* This file comes from bison-1.28. */
/* Skeleton output parser for bison,
@@ -549,7 +549,7 @@ __yy_memcpy (char *to, char *from, unsigned int count)
#endif
#endif
-#line 217 "/usr/lib/bison.simple"
+#line 217 "/usr/share/misc/bison.simple"
/* The user can define YYPARSE_PARAM as the name of an argument to be passed
into yyparse. The argument should have type void *.
@@ -1154,7 +1154,7 @@ case 40:
break;}
}
/* the action file gets copied in in place of this dollarsign */
-#line 543 "/usr/lib/bison.simple"
+#line 543 "/usr/share/misc/bison.simple"
yyvsp -= yylen;
yyssp -= yylen;
@@ -2097,10 +2097,13 @@ initialize_random_junk ()
* refer to them.
*/
for (i = 'a'; i <= 'z'; i++) {
- ++is_idchar[TOUPPER(i)];
- ++is_idchar[i];
- ++is_idstart[TOUPPER(i)];
- ++is_idstart[i];
+ /* SKIP EBCIDIC holes, char must be a valid low case char */
+ if (ISLOWER(i)) {
+ ++is_idchar[TOUPPER(i)];
+ ++is_idchar[i];
+ ++is_idstart[TOUPPER(i)];
+ ++is_idstart[i];
+ }
}
for (i = '0'; i <= '9'; i++)
++is_idchar[i];