lhs-1.c: Use parm instead of stack space.
* gcc.target/powerpc/lhs-1.c: Use parm instead of stack space. From-SVN: r188247
This commit is contained in:
parent
a6dac809f8
commit
951c68fac8
@ -1,3 +1,7 @@
|
||||
2012-06-05 Pat Haugen <pthaugen@us.ibm.com>
|
||||
|
||||
* gcc.target/powerpc/lhs-1.c: Use parm instead of stack space.
|
||||
|
||||
2012-06-05 Edmar Wienskoski <edmar@freescale.com>
|
||||
|
||||
* gcc.dg/tree-ssa/vector-3.c: Adjust regular expression.
|
||||
|
@ -13,10 +13,9 @@ typedef union {
|
||||
};
|
||||
} words;
|
||||
|
||||
unsigned int f (double d)
|
||||
unsigned int f (double d, words *u)
|
||||
{
|
||||
words u;
|
||||
u.val = d;
|
||||
return u.w2;
|
||||
u->val = d;
|
||||
return u->w2;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user