* gcc.c-torture/execute/990827-1.c: Fix typo.
authorRichard Earnshaw <rearnsha@arm.com>
Fri, 3 Sep 1999 09:42:25 +0000 (09:42 +0000)
committerRichard Earnshaw <rearnsha@gcc.gnu.org>
Fri, 3 Sep 1999 09:42:25 +0000 (09:42 +0000)
From-SVN: r29082

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/990827-1.c

index ef6ee556d090e739c8b6d05ce94536a905b15885..41c8cfc9b6e5cb4d37b97016273b5474b8d8eb88 100644 (file)
@@ -1,3 +1,7 @@
+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.
index 033d225ec30698d3f323880e414b77e9d41f3ee5..6116e788627dbbabdb207342f6963f9db1042619 100644 (file)
@@ -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);