diff options
author | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-12 08:39:36 +0000 |
---|---|---|
committer | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-12 08:39:36 +0000 |
commit | 589ff9e7959f3f00b249997aacff007bea18de8c (patch) | |
tree | f237fb1035a9a711c819be217b1535718637090c /gcc/loop.c | |
parent | 9cef723b817145a4c702b2be73b06ad8605a75b3 (diff) | |
download | gcc-589ff9e7959f3f00b249997aacff007bea18de8c.tar.gz |
Fix hard reg cost calculations in CSE; some minor cleanups
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36354 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/loop.c b/gcc/loop.c index d266ab0c91d..7d172e9147a 100644 --- a/gcc/loop.c +++ b/gcc/loop.c @@ -300,7 +300,7 @@ init_loop () reg_address_cost = address_cost (reg, SImode); - copy_cost = 2; + copy_cost = COSTS_N_INSNS (1); /* Free the objects we just allocated. */ obfree (free_point); |