* Support debugging using native MACH primitives on hppa*-*-osf*.
[deliverable/binutils-gdb.git] / gdb / f-exp.y
index 71a219d159f2e48dcfeb5f51eb25fd69f34c2197..857b742b531cddf1d9a43f355c06cafd238e7c63 100644 (file)
@@ -1039,8 +1039,8 @@ yylex ()
              got_dot = got_d = 1;
            else if (!hex && !got_dot && *p == '.')
              got_dot = 1;
-           else if ((got_e && (p[-1] == 'e' || p[-1] == 'E'))
-                    || (got_d && (p[-1] == 'd' || p[-1] == 'D'))
+           else if (((got_e && (p[-1] == 'e' || p[-1] == 'E'))
+                    || (got_d && (p[-1] == 'd' || p[-1] == 'D')))
                     && (*p == '-' || *p == '+'))
              /* This is the sign of the exponent, not the end of the
                 number.  */
@@ -1114,7 +1114,6 @@ yylex ()
      and $$digits (equivalent to $<-digits> if you could type that).
      Make token type LAST, and put the number (the digits) in yylval.  */
   
- tryname:
   if (*tokstart == '$')
     {
       register int negate = 0;
This page took 0.057593 seconds and 4 git commands to generate.