Commit 5628fde1 by Dale Johannesen Committed by Dale Johannesen

calls.c (expand_call): Do not call preserve_temp_slots.


2004-11-22  Dale Johannesen  <dalej@apple.com>

        * calls.c (expand_call): Do not call preserve_temp_slots.

From-SVN: r91038
parent 61ea20f5
2004-11-22 Dale Johannesen <dalej@apple.com>
* calls.c (expand_call): Do not call preserve_temp_slots.
2004-11-22 Kazu Hirata <kazu@cs.umass.edu>
* tree-flow.h: Remove the prototype for remove_phi_arg.
......
......@@ -2819,7 +2819,6 @@ expand_call (tree exp, rtx target, int ignore)
| TYPE_QUAL_CONST));
target = assign_temp (nt, 0, 1, 1);
preserve_temp_slots (target);
}
if (! rtx_equal_p (target, valreg))
......
2004-11-22 Dale Johannesen <dalej@apple.com>
* gcc.dg/20041111-1.c: New.
2004-11-19 Dorit Naishlos <dorit@il.ibm.com>
PR tree-opt/18536
......
/* { dg-do compile { target powerpc*-*-* } } */
/* { dg-options "-mcpu=power4 -O2" } */
extern unsigned long long set_mask[65];
extern unsigned long long xyzzy(int) __attribute__((pure));
int valid (int x)
{
return(xyzzy(x) & set_mask[x]);
}
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