mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 04:50:26 +08:00
re PR target/90547 (ICE in gen_lowpart_general, at rtlhooks.c:63)
PR target/90547 * config/i386/i386.md (anddi_1 to andsi_1_zext splitter): Avoid calling gen_lowpart with CONST operand. testsuite/ChangeLog: PR target/90547 * gcc.target/i386/pr90547.c: New test. From-SVN: r271479
This commit is contained in:
parent
40dada26a7
commit
d9cb427712
@ -1,3 +1,9 @@
|
||||
2019-05-21 Uroš Bizjak <ubizjak@gmail.com>
|
||||
|
||||
PR target/90547
|
||||
* config/i386/i386.md (anddi_1 to andsi_1_zext splitter):
|
||||
Avoid calling gen_lowpart with CONST operand.
|
||||
|
||||
2019-05-21 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* tree-ssa-threadupdate.c (struct ssa_local_info_t): Add
|
||||
|
@ -8525,6 +8525,14 @@
|
||||
operands[2] = shallow_copy_rtx (operands[2]);
|
||||
PUT_MODE (operands[2], SImode);
|
||||
}
|
||||
else if (GET_CODE (operands[2]) == CONST)
|
||||
{
|
||||
/* (const:DI (plus:DI (symbol_ref:DI ("...")) (const_int N))) */
|
||||
operands[2] = copy_rtx (operands[2]);
|
||||
PUT_MODE (operands[2], SImode);
|
||||
PUT_MODE (XEXP (operands[2], 0), SImode);
|
||||
PUT_MODE (XEXP (XEXP (operands[2], 0), 0), SImode);
|
||||
}
|
||||
else
|
||||
operands[2] = gen_lowpart (SImode, operands[2]);
|
||||
})
|
||||
|
@ -1,3 +1,8 @@
|
||||
2019-05-21 Uroš Bizjak <ubizjak@gmail.com>
|
||||
|
||||
PR target/90547
|
||||
* gcc.target/i386/pr90547.c: New test.
|
||||
|
||||
2019-05-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
|
||||
* gcc.dg/Wattribute-alias.c: Pass emtpy arg to dg-require-ifunc.
|
||||
|
21
gcc/testsuite/gcc.target/i386/pr90547.c
Normal file
21
gcc/testsuite/gcc.target/i386/pr90547.c
Normal file
@ -0,0 +1,21 @@
|
||||
/* PR target/90547 */
|
||||
/* { dg-do compile } */
|
||||
/* { dg-options "-O2" } */
|
||||
|
||||
void
|
||||
foo ()
|
||||
{
|
||||
void *g[] = {&&a, &&b};
|
||||
|
||||
for (unsigned c = 0x1F;; c >>= 1)
|
||||
{
|
||||
unsigned d = (long)("a"+1);
|
||||
long e = 8;
|
||||
|
||||
while (e)
|
||||
{
|
||||
a: goto *g[c&d];
|
||||
b: e--;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user