]> gcc.gnu.org Git - gcc.git/commitdiff
Fix Richard suggested and I forgot.
authorJan Hubicka <hubicka@gcc.gnu.org>
Wed, 14 Feb 2001 21:20:21 +0000 (21:20 +0000)
committerJan Hubicka <hubicka@gcc.gnu.org>
Wed, 14 Feb 2001 21:20:21 +0000 (21:20 +0000)
From-SVN: r39690

gcc/config/i386/i386.c

index 222dbf796a594f048130c16f8f9af32d4e988552..ee585bf937b9c660f3ddda0e0aa0023eaead71f3 100644 (file)
@@ -9048,7 +9048,7 @@ ix86_memory_move_cost (mode, class, in)
        /* Compute number of 32bit moves needed.  TFmode is moved as XFmode.  */
        if (mode == TFmode)
          mode = XFmode;
-       return ((in ? ix86_cost->int_load[1] : ix86_cost->int_store[1])
+       return ((in ? ix86_cost->int_load[2] : ix86_cost->int_store[2])
                * (int) GET_MODE_SIZE (mode) / 4);
     }
 }
This page took 0.076768 seconds and 5 git commands to generate.