Commit b9aa59fb by Richard Sandiford Committed by Richard Sandiford

* genattrtab.c (gen_bypass): Allow bypasses to contain whitespace.

From-SVN: r110206
parent cc8d9561
2006-01-25 Richard Sandiford <richard@codesourcery.com>
* genattrtab.c (gen_bypass): Allow bypasses to contain whitespace.
2006-01-25 Kaz Kojima <kkojima@gcc.gnu.org>
* config/sh/predicates.md (sh_register_operand): Accept CONST_DOUBLE.
......
......@@ -4408,7 +4408,10 @@ gen_bypass (rtx def)
if (*p == ',')
{
gen_bypass_1 (base, p - base);
base = p + 1;
do
p++;
while (ISSPACE (*p));
base = p;
}
gen_bypass_1 (base, p - base);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment