Commit 951c68fa by Pat Haugen Committed by Pat Haugen

lhs-1.c: Use parm instead of stack space.

        * gcc.target/powerpc/lhs-1.c: Use parm instead of stack space.

From-SVN: r188247
parent a6dac809
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> 2012-06-05 Edmar Wienskoski <edmar@freescale.com>
* gcc.dg/tree-ssa/vector-3.c: Adjust regular expression. * gcc.dg/tree-ssa/vector-3.c: Adjust regular expression.
......
...@@ -13,10 +13,9 @@ typedef union { ...@@ -13,10 +13,9 @@ typedef union {
}; };
} words; } words;
unsigned int f (double d) unsigned int f (double d, words *u)
{ {
words u; u->val = d;
u.val = d; return u->w2;
return u.w2;
} }
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