Commit eb898ce4 by Richard Earnshaw Committed by Richard Earnshaw

* gcc.c-torture/execute/990827-1.c: Fix typo.

From-SVN: r29082
parent a9183fef
Fri Sep 3 10:39:38 BST 1999 Richard Earnshaw <rearnsha@arm.com>
* gcc.c-torture/execute/990827-1.c: Fix typo.
Fri Sep 03 09:31:10 BST 1999 Nathan Sidwell <nathan@acm.org>
* g++.old-deja/g++.other/deref1.C: New test.
......
......@@ -9,11 +9,11 @@ unsigned test(unsigned one , unsigned bit)
int main()
{
if ((test 1,0) != 0)
if (test (1,0) != 0)
abort ();
if ((test 1,1) != 1)
if (test (1,1) != 1)
abort ();
if ((test 1,65535) != 1)
if (test (1,65535) != 1)
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