Commit 45acde2f by Uros Bizjak Committed by Uros Bizjak

re PR target/89945 (ICE in gen_lowpart_general, at rtlhooks.c:63)

	PR target/89945
	* config/i386/i386.md (anddi_1 to andsi_1_zext splitter):
	Avoid calling gen_lowpart with SYMBOL_REF and LABEL_REF operand.

testsuite/ChangeLog:

	PR target/89945
	* gcc.target/i386/pr89945.c: New test.

From-SVN: r270190
parent 6d31ef2a
2019-04-07 Uroš Bizjak <ubizjak@gmail.com>
PR target/89945
* config/i386/i386.md (anddi_1 to andsi_1_zext splitter):
Avoid calling gen_lowpart with SYMBOL_REF and LABEL_REF operand.
2019-04-05 Joern Rennecke <joern.rennecke@embecosm.com>
* sched-deps.c (sched_macro_fuse_insns): Check return value of
......
......@@ -8609,7 +8609,16 @@
[(parallel [(set (match_dup 0)
(zero_extend:DI (and:SI (match_dup 1) (match_dup 2))))
(clobber (reg:CC FLAGS_REG))])]
"operands[2] = gen_lowpart (SImode, operands[2]);")
{
if (GET_CODE (operands[2]) == SYMBOL_REF
|| GET_CODE (operands[2]) == LABEL_REF)
{
operands[2] = shallow_copy_rtx (operands[2]);
PUT_MODE (operands[2], SImode);
}
else
operands[2] = gen_lowpart (SImode, operands[2]);
})
;; See comment for addsi_1_zext why we do use nonimmediate_operand
(define_insn "*andsi_1_zext"
......
2019-04-07 Uroš Bizjak <ubizjak@gmail.com>
PR target/89945
* gcc.target/i386/pr89945.c: New test.
2019-04-06 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/87352
......
/* PR target/89945 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
void
foo ()
{
void *g[] = {&&a, &&b};
for (unsigned c = 0x1F;; c >>= 1)
{
unsigned d = (long)"a";
long e = 8;
while (e)
{
a: goto *g[c&d];
b: e--;
}
}
}
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