diff options
author | Bernd Schmidt <bernds@redhat.co.uk> | 2000-09-12 08:39:36 +0000 |
---|---|---|
committer | Bernd Schmidt <crux@gcc.gnu.org> | 2000-09-12 08:39:36 +0000 |
commit | f1c1dfc3899118a8cc7151550dd8917909b9c112 (patch) | |
tree | f237fb1035a9a711c819be217b1535718637090c /gcc/loop.c | |
parent | a6c8d25340249a8a41661a37467ebf73fc226f20 (diff) | |
download | gcc-f1c1dfc3899118a8cc7151550dd8917909b9c112.zip gcc-f1c1dfc3899118a8cc7151550dd8917909b9c112.tar.gz gcc-f1c1dfc3899118a8cc7151550dd8917909b9c112.tar.bz2 |
Fix hard reg cost calculations in CSE; some minor cleanups
From-SVN: r36354
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |