Commit ebc30bf9 by Marek Polacek Committed by Marek Polacek

* gcc.dg/fold-ior-2.c (fn4): Swap operands.

From-SVN: r225174
parent ce7623ba
2015-06-30 Marek Polacek <polacek@redhat.com>
* gcc.dg/fold-ior-2.c (fn4): Swap operands.
2015-06-30 Tom de Vries <tom@codesourcery.com> 2015-06-30 Tom de Vries <tom@codesourcery.com>
* gcc.dg/parloops-exit-first-loop-alt-5.c: New test. * gcc.dg/parloops-exit-first-loop-alt-5.c: New test.
......
...@@ -22,7 +22,7 @@ fn3 (unsigned int x) ...@@ -22,7 +22,7 @@ fn3 (unsigned int x)
unsigned int unsigned int
fn4 (unsigned int x) fn4 (unsigned int x)
{ {
return ~x | x; return x | ~x;
} }
int int
......
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