diff options
author | Jan Hubicka <hubicka@gcc.gnu.org> | 2001-02-14 21:20:21 +0000 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2001-02-14 21:20:21 +0000 |
commit | 3bb7e1260f14a50dcd9937b3d13818d5c948b10b (patch) | |
tree | 9a4c75f95da7183b37e0e60d1e25d75d5ba834e4 | |
parent | fa79946ef552152e732152ad7ffd127922ac9a60 (diff) | |
download | gcc-3bb7e1260f14a50dcd9937b3d13818d5c948b10b.zip gcc-3bb7e1260f14a50dcd9937b3d13818d5c948b10b.tar.gz gcc-3bb7e1260f14a50dcd9937b3d13818d5c948b10b.tar.bz2 |
Fix Richard suggested and I forgot.
From-SVN: r39690
-rw-r--r-- | gcc/config/i386/i386.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 222dbf7..ee585bf 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -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); } } |