* new parsing option
authorFrank Ch. Eigler <fche@redhat.com>
Mon, 17 Jul 2000 17:51:18 +0000 (17:51 +0000)
committerFrank Ch. Eigler <fche@redhat.com>
Mon, 17 Jul 2000 17:51:18 +0000 (17:51 +0000)
2000-07-17  Frank Ch. Eigler  <fche@redhat.com>

* expr.c (operand): Permit %bin literals if LITERAL_PREFIXPERCENT_BIN
is defined.

gas/ChangeLog
gas/expr.c

index e03dbb97e6542e7ea1e5d064f51a4733bbb62383..207a576e2fc04b55f80a82c7d83e26f810aa82b4 100644 (file)
@@ -1,3 +1,8 @@
+2000-07-17  Frank Ch. Eigler  <fche@redhat.com>
+
+       * expr.c (operand): Permit %bin literals if LITERAL_PREFIXPERCENT_BIN
+       is defined.
+
 2000-07-15  Ian Lance Taylor  <ian@zembu.com>
 
        * doc/c-mips.texi (MIPS Opts): Remove erroneous space after
index fe2aa6204e1f8bedd6cea489b551068bbf37ea8b..3365893ca9a818d5bcae78baf99d450a9a8d9a4c 100644 (file)
@@ -826,6 +826,12 @@ operand (expressionP)
       break;
 #endif
 
+#ifdef LITERAL_PREFIXPERCENT_BIN
+    case '%':
+      integer_constant (2, expressionP);
+      break;
+#endif
+
     case '0':
       /* non-decimal radix */
 
This page took 0.029854 seconds and 4 git commands to generate.