reload1.c (forget_old_reloads_1): Adjust CLOBBER_HIGH assert.

* reload1.c (forget_old_reloads_1): Adjust CLOBBER_HIGH
	assert.

From-SVN: r263333
This commit is contained in:
Jeff Law 2018-08-06 07:49:10 -06:00 committed by Jeff Law
parent edbbb166f7
commit 5dc096267c
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2018-08-06 Jeff Law <law@redhat.com>
* reload1.c (forget_old_reloads_1): Adjust CLOBBER_HIGH
assert.
2018-08-06 Jozef Lawrynowicz <jozef.l@mittosystems.com>
PR target/86662

View File

@ -4931,7 +4931,7 @@ forget_old_reloads_1 (rtx x, const_rtx setter,
return;
/* CLOBBER_HIGH is only supported for LRA. */
gcc_assert (GET_CODE (setter) != CLOBBER_HIGH);
gcc_assert (setter == NULL_RTX || GET_CODE (setter) != CLOBBER_HIGH);
regno = REGNO (x);