* fold-const.c (fold): Fix comment.
authorJim Kingdon <kingdon@redhat.com>
Tue, 26 Oct 1999 04:27:50 +0000 (22:27 -0600)
committerJeff Law <law@gcc.gnu.org>
Tue, 26 Oct 1999 04:27:50 +0000 (22:27 -0600)
From-SVN: r30174

gcc/ChangeLog
gcc/fold-const.c

index 84c409d09d79387cd1d78b919f8e4e19e9963169..b282864fb4e73afa047e8e27cf906de5a883f949 100644 (file)
@@ -1,3 +1,7 @@
+Mon Oct 25 22:27:40 1999  Jim Kingdon  <http://developer.redhat.com/>
+
+       * fold-const.c (fold): Fix comment.
+
 Mon Oct 25 22:49:34 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * dbxout.c (lastfile, cwd, dbxout_type_method_1,
index 24cc752932765003f789aaad5755c24a6e908919..f633fa85f1387729aa47d24b55bf8698e8af8a8e 100644 (file)
@@ -5258,7 +5258,7 @@ fold (expr)
            return build1 (NOP_EXPR, type, TREE_OPERAND (arg0, 0));
        }
 
-      /* Convert (or (not arg0) (not arg1)) to (not (and (arg0) (arg1))).
+      /* Convert (and (not arg0) (not arg1)) to (not (or (arg0) (arg1))).
 
         This results in more efficient code for machines without a NOR 
         instruction.  Combine will canonicalize to the first form