NUMBERS_WITH_SUFFIX *doesn't* want to handle 'x', since that is valid
authorTimothy Wall <twall@alum.mit.edu>
Tue, 8 Feb 2000 19:41:03 +0000 (19:41 +0000)
committerTimothy Wall <twall@alum.mit.edu>
Tue, 8 Feb 2000 19:41:03 +0000 (19:41 +0000)
when the 0x prefix is used.

gas/expr.c

index cf394bd..97d5cd5 100644 (file)
@@ -869,7 +869,7 @@ operand (expressionP)
 
        case 'x':
        case 'X':
-         if (flag_m68k_mri || NUMBERS_WITH_SUFFIX)
+         if (flag_m68k_mri)
            goto default_case;
          input_line_pointer++;
          integer_constant (16, expressionP);