Commit 7fe34fdf by Jim Wilson

(cse_process_notes): Replace NULL_RTX with just zero.

From-SVN: r3795
parent 521f2d6f
......@@ -7173,7 +7173,7 @@ cse_process_notes (x, object)
for (i = 0; i < GET_RTX_LENGTH (code); i++)
if (fmt[i] == 'e')
validate_change (object, &XEXP (x, i),
cse_process_notes (XEXP (x, i), object), NULL_RTX);
cse_process_notes (XEXP (x, i), object), 0);
return x;
}
......
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