i386.c (ix86_memory_move_cost): Fix typo.
authorVladimir Makarov <vmakarov@redhat.com>
Mon, 16 Jun 2003 15:26:44 +0000 (15:26 +0000)
committerVladimir Makarov <vmakarov@gcc.gnu.org>
Mon, 16 Jun 2003 15:26:44 +0000 (15:26 +0000)
2003-06-16  Vladimir Makarov  <vmakarov@redhat.com>

* config/i386/i386.c (ix86_memory_move_cost): Fix typo.

From-SVN: r68020

gcc/ChangeLog
gcc/config/i386/i386.c

index 08139d608829bae05cde52f71d16a18a3df2dca5..5b39b1241fcd18e857b96942e8358dd5bd249db9 100644 (file)
@@ -1,3 +1,7 @@
+2003-06-16  Vladimir Makarov  <vmakarov@redhat.com>
+
+       * config/i386/i386.c (ix86_memory_move_cost): Fix typo.
+
 2003-06-16  Andreas Jaeger  <aj@suse.de>
 
        * basic-block.h: Remove duplicate prototype of
index 51f22cf250705a9e73f0ef015d78ba59f5541134..bc1604f8d477e21a918837dc3e94f8b1266f6dd9 100644 (file)
@@ -14892,8 +14892,8 @@ ix86_memory_move_cost (mode, class, in)
        if (mode == TFmode)
          mode = XFmode;
        return ((in ? ix86_cost->int_load[2] : ix86_cost->int_store[2])
-               * ((int) GET_MODE_SIZE (mode)
-                  + UNITS_PER_WORD -1 ) / UNITS_PER_WORD);
+               * (((int) GET_MODE_SIZE (mode)
+                   + UNITS_PER_WORD - 1) / UNITS_PER_WORD));
     }
 }