Commit 99e8e649 by Jakub Jelinek Committed by Jakub Jelinek

re PR target/30185 (ICE with struct and divide)

	PR target/30185
	* config/rs6000/rs6000.md (div<mode>3): Use correct mode in
	force_reg call.

	* gcc.c-torture/execute/pr30185.c: New test.

From-SVN: r119947
parent 8f3fc4aa
2006-12-15 Jakub Jelinek <jakub@redhat.com>
PR target/30185
* config/rs6000/rs6000.md (div<mode>3): Use correct mode in
force_reg call.
2006-12-15 Andrew Pinski <pinski@gmail.com>
PR tree-opt/30140
......
......@@ -2443,7 +2443,7 @@
;
else if (TARGET_POWERPC)
{
operands[2] = force_reg (SImode, operands[2]);
operands[2] = force_reg (<MODE>mode, operands[2]);
if (TARGET_POWER)
{
emit_insn (gen_divsi3_mq (operands[0], operands[1], operands[2]));
......
2006-12-15 Jakub Jelinek <jakub@redhat.com>
PR target/30185
* gcc.c-torture/execute/pr30185.c: New test.
2006-12-15 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR testsuite/30179
/* PR target/30185 */
extern void abort (void);
typedef struct S { char a; long long b; } S;
S
foo (S x, S y)
{
S z;
z.b = x.b / y.b;
return z;
}
int
main (void)
{
S a, b;
a.b = 32LL;
b.b = 4LL;
if (foo (a, b).b != 8LL)
abort ();
a.b = -8LL;
b.b = -2LL;
if (foo (a, b).b != 4LL)
abort ();
return 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