OSDN Git Service

Fix typo.
authorclm <clm@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 8 Jul 1999 17:10:58 +0000 (17:10 +0000)
committerclm <clm@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 8 Jul 1999 17:10:58 +0000 (17:10 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28026 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/920501-5.c

index aa544ee..a08c555 100644 (file)
@@ -1,3 +1,7 @@
+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.
index 0974074..e352a91 100644 (file)
@@ -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);
 }