Commit 8dc08788 authored by Russ Cox's avatar Russ Cox

remove ( ) around mismatch type prints,

so that they don't look like functions.

R=ken
OCL=16244
CL=16244
parent 387c1bc3
...@@ -1845,9 +1845,9 @@ loop: ...@@ -1845,9 +1845,9 @@ loop:
yyerror("illegal types for operand: %O", o); yyerror("illegal types for operand: %O", o);
if(tl != T) if(tl != T)
print(" (%lT)\n", tl); print(" %lT\n", tl);
if(tr != T) if(tr != T)
print(" (%lT)\n", tr); print(" %lT\n", tr);
} }
/* /*
......
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