Commit 62323846 by Richard Guenther Committed by Richard Biener

re PR testsuite/46274 (testsuite/gcc.dg: operator precedence)

2010-11-03  Richard Guenther  <rguenther@suse.de>

	PR testsuite/46274
	* gcc.dg/tree-ssa/gen-vect-11a.c: Fix operator precedence.
	* gcc.dg/vect/vect-19.c: Likewise.
	* gcc.dg/vect/vect-17.c: Likewise.

From-SVN: r166243
parent 11cbe409
2010-11-03 Richard Guenther <rguenther@suse.de>
PR testsuite/46274
* gcc.dg/tree-ssa/gen-vect-11a.c: Fix operator precedence.
* gcc.dg/vect/vect-19.c: Likewise.
* gcc.dg/vect/vect-17.c: Likewise.
2010-11-03 H.J. Lu <hongjiu.lu@intel.com>
PR target/46285
......
......@@ -30,7 +30,7 @@ int main ()
/* check results: */
for (i = 0; i < N; i++)
{
if (ia[i] != ib[i] & ic[i])
if (ia[i] != (ib[i] & ic[i]))
abort ();
}
......
......@@ -82,7 +82,7 @@ main1 ()
/* check results: */
for (i = 0; i <N; i++)
{
if (ia[i] != ib[i] & ic[i])
if (ia[i] != (ib[i] & ic[i]))
abort ();
}
......@@ -96,7 +96,7 @@ main1 ()
/* check results: */
for (i = 0; i <N; i++)
{
if (ca[i] != cb[i] & cc[i])
if (ca[i] != (cb[i] & cc[i]))
abort ();
}
......@@ -110,7 +110,7 @@ main1 ()
/* check results: */
for (i = 0; i <N; i++)
{
if (sa[i] != sb[i] & sc[i])
if (sa[i] != (sb[i] & sc[i]))
abort ();
}
......
......@@ -81,7 +81,7 @@ main1 ()
/* check results: */
for (i = 0; i <N; i++)
{
if (ia[i] != ib[i] ^ ic[i])
if (ia[i] != (ib[i] ^ ic[i]))
abort ();
}
......@@ -95,7 +95,7 @@ main1 ()
/* check results: */
for (i = 0; i <N; i++)
{
if (ca[i] != cb[i] ^ cc[i])
if (ca[i] != (cb[i] ^ cc[i]))
abort ();
}
......@@ -109,7 +109,7 @@ main1 ()
/* check results: */
for (i = 0; i <N; i++)
{
if (sa[i] != sb[i] ^ sc[i])
if (sa[i] != (sb[i] ^ sc[i]))
abort ();
}
......
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