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> Fri Sep 03 09:31:10 BST 1999 Nathan Sidwell <nathan@acm.org>
* g++.old-deja/g++.other/deref1.C: New test. * g++.old-deja/g++.other/deref1.C: New test.
......
...@@ -9,11 +9,11 @@ unsigned test(unsigned one , unsigned bit) ...@@ -9,11 +9,11 @@ unsigned test(unsigned one , unsigned bit)
int main() int main()
{ {
if ((test 1,0) != 0) if (test (1,0) != 0)
abort (); abort ();
if ((test 1,1) != 1) if (test (1,1) != 1)
abort (); abort ();
if ((test 1,65535) != 1) if (test (1,65535) != 1)
abort (); abort ();
exit (0); 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