fixed braino in changelog entry for replacement of "switches" with "options"
[deliverable/binutils-gdb.git] / opcodes / cgen-asm.c
index b664d7bc8bf40c72cee275d6747170a6f169e59c..05b62bf49e1926830e1ccd0a399d82c176e68413 100644 (file)
@@ -229,10 +229,16 @@ cgen_parse_keyword (cd, strp, keyword_table, valuep)
     ++p;
 
   if (p - start >= (int) sizeof (buf))
-    return _("unrecognized keyword/register name");
-
-  memcpy (buf, start, p - start);
-  buf[p - start] = 0;
+    {
+      /* All non-empty CGEN keywords can fit into BUF.  The only thing
+        we can match here is the empty keyword.  */
+      buf[0] = 0;
+    }
+  else
+    {
+      memcpy (buf, start, p - start);
+      buf[p - start] = 0;
+    }
 
   ke = cgen_keyword_lookup_name (keyword_table, buf);
 
This page took 0.024736 seconds and 4 git commands to generate.