(cse_process_notes): Replace NULL_RTX with just zero.

From-SVN: r3795
This commit is contained in:
Jim Wilson 1993-03-19 18:17:48 -08:00
parent 521f2d6fcb
commit 7fe34fdfe7
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}