Commit 4e5b36bd by Janis Johnson Committed by Janis Johnson

ppc64-abi-3.c: Initialize variables to suppress warning.

	* gcc.target/powerpc/ppc64-abi-3.c: Initialize variables to suppress
	warning.

From-SVN: r140835
parent 17372f8c
2008-10-02 Janis Johnson <janis187@us.ibm.com>
* gcc.target/powerpc/ppc64-abi-3.c: Initialize variables to suppress
warning.
2008-10-02 Richard Guenther <rguenther@suse.de>
PR middle-end/37713
......
......@@ -21,8 +21,8 @@ g(v2si v)
int
main()
{
v4si v;
v2si w;
v4si v = { 1, 2, 3, 4 };
v2si w = { 5, 6 };
v = f (v); /* { dg-error "altivec instructions are disabled" "PR18631" { xfail *-*-* } } */
w = g (w);
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