Commit 52a5538b by Richard Stallman

*** empty log message ***

From-SVN: r1554
parent b4f96011
...@@ -311,6 +311,19 @@ match_rtx (x, path, fail_label) ...@@ -311,6 +311,19 @@ match_rtx (x, path, fail_label)
printf (" if (XINT (x, %d) != %d) goto L%d;\n", printf (" if (XINT (x, %d) != %d) goto L%d;\n",
i, XINT (x, i), fail_label); i, XINT (x, i), fail_label);
} }
else if (fmt[i] == 'w')
{
/* Make sure that at run time `x' is the RTX we want to test. */
if (i != 0)
{
printf (" x = ");
print_path (path);
printf (";\n");
}
printf (" if (XWINT (x, %d) != %d) goto L%d;\n",
i, XWINT (x, i), fail_label);
}
else if (fmt[i] == 's') else if (fmt[i] == 's')
{ {
/* Make sure that at run time `x' is the RTX we want to test. */ /* Make sure that at run time `x' is the RTX we want to test. */
......
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