]> gcc.gnu.org Git - gcc.git/commitdiff
md.texi (Insn Canonicalizations): Correct canonicalization of (plus (mult (neg B...
authorIan Lance Taylor <iant@google.com>
Wed, 19 Aug 2009 15:21:16 +0000 (15:21 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Wed, 19 Aug 2009 15:21:16 +0000 (15:21 +0000)
* doc/md.texi (Insn Canonicalizations): Correct canonicalization
of (plus (mult (neg B) C) A).

From-SVN: r150937

gcc/ChangeLog
gcc/doc/md.texi

index 855e4e50926041e070c90107c4cc08d16935e9d6..0831f4cfff5f87ba7cca24d64e9ecedea78b3eea 100644 (file)
@@ -1,3 +1,8 @@
+2009-08-19  Ian Lance Taylor  <iant@google.com>
+
+       * doc/md.texi (Insn Canonicalizations): Correct canonicalization
+       of (plus (mult (neg B) C) A).
+
 2009-08-18  Michael Matz  <matz@suse.de>
 
        * omp-low.c (optimize_omp_library_calls): Use types_compatible_p
        (output_init_element): Issue -Wc++-compat warning if needed when
        initializing a bitfield with enum type.
        * c-parser.c (c_parser_expression): Set original_type to
-       original_type of right hand operand of comman operator.
+       original_type of right hand operand of comma operator.
 
 2009-04-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
index 0e516b09fc07547a3df06b5e3de5ff8b1de2ef60..69a23b693b40b2d70d71173e7ac9d41cc5abfda4 100644 (file)
@@ -5625,7 +5625,7 @@ In combinations of @code{neg}, @code{mult}, @code{plus}, and
 @code{minus}, the @code{neg} operations (if any) will be moved inside
 the operations as far as possible.  For instance,
 @code{(neg (mult A B))} is canonicalized as @code{(mult (neg A) B)}, but
-@code{(plus (mult (neg A) B) C)} is canonicalized as
+@code{(plus (mult (neg B) C) A)} is canonicalized as
 @code{(minus A (mult B C))}.
 
 @cindex @code{compare}, canonicalization of
This page took 0.098591 seconds and 5 git commands to generate.