Commit 6ccecb36 by Catherine Moore Committed by Catherine Moore

Fix typo.

From-SVN: r28026
parent d49d43f0
1999-07-08 Catherine Moore <clm@cygnus.com>
* gcc.c-torture/execute/920501-5.c: Fix typo. Change | to ||.
1999-07-05 Manfred Hollstein <mhollstein@cygnus.com>
* gcc.dg/990703-1.c (y): Terminate definition syntactically correctly.
......
......@@ -10,7 +10,7 @@ x (int i)
}
main ()
{
if (x (0) != 2 || x (1) != 3 | x (2) != 5)
if (x (0) != 2 || x (1) != 3 || x (2) != 5)
abort();
exit(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