Commit 9ed5879d by Mark Mitchell Committed by Mark Mitchell

gcse.c (delete_null_pointer_checks): Fix typo in this change: Thu Oct 28…

gcse.c (delete_null_pointer_checks): Fix typo in this change: Thu Oct 28 02:15:22 1999 Jeffrey A Law (law@cygnus.com).

	* gcse.c (delete_null_pointer_checks): Fix typo in this change:
	Thu Oct 28 02:15:22 1999  Jeffrey A Law  (law@cygnus.com).

From-SVN: r30243
parent 2a7b6292
Thu Oct 28 09:45:48 1999 Mark Mitchell <mark@codesourcery.com>
* gcse.c (delete_null_pointer_checks): Fix typo in previous change.
Thu Oct 28 03:37:50 1999 Peter Gerwinski <peter@gerwinski.de>
* tree.def (PLACEHOLDER_EXPR): Update comments.
......
......@@ -5077,7 +5077,7 @@ delete_null_pointer_checks (f)
appearing in a SET_DEST. */
if (GET_CODE (SET_DEST (set)) == MEM
&& GET_CODE (XEXP (SET_DEST (set), 0)) == REG
&& REGNO (XEXP (SET_SRC (set), 0)) >= FIRST_PSEUDO_REGISTER)
&& REGNO (XEXP (SET_DEST (set), 0)) >= FIRST_PSEUDO_REGISTER)
SET_BIT (nonnull_local[current_block],
REGNO (XEXP (SET_DEST (set), 0)));
}
......
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