diff options
author | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-03-14 05:07:15 +0000 |
---|---|---|
committer | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-03-14 05:07:15 +0000 |
commit | f9e15121337d665511480c8501bd2d4e7445faff (patch) | |
tree | b51ea120d470bb8953e46b0885064feeb114b3a5 /gcc/global.c | |
parent | 15bbde2b906281574b7fe587bd298138e07436d3 (diff) | |
download | gcc-f9e15121337d665511480c8501bd2d4e7445faff.tar.gz |
*** empty log message ***
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@472 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/global.c')
-rw-r--r-- | gcc/global.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/global.c b/gcc/global.c index 9bdfd10ad3c..913c61eff5e 100644 --- a/gcc/global.c +++ b/gcc/global.c @@ -542,7 +542,7 @@ global_alloc (file) for the sake of debugging information. */ if (n_basic_blocks > 0) #endif - reload (basic_block_head[0], 1, file); + reload (get_insns (), 1, file); } /* Sort predicate for ordering the allocnos. @@ -778,7 +778,7 @@ prune_preferences () /* Scan least most important to most important. For each allocno, remove from preferences registers that cannot be used, either because of conflicts or register type. Then compute all registers - prefered by each lower-priority register that conflicts. */ + preferred by each lower-priority register that conflicts. */ for (i = max_allocno - 1; i >= 0; i--) { @@ -875,7 +875,7 @@ find_reg (allocno, losers, all_regs_p, accept_call_clobbered, retrying) IOR_HARD_REG_SET (used1, hard_reg_conflicts[allocno]); /* Try each hard reg to see if it fits. Do this in two passes. - In the first pass, skip registers that are prefered by some other pseudo + In the first pass, skip registers that are preferred by some other pseudo to give it a better chance of getting one of those registers. Only if we can't get a register when excluding those do we take one of them. However, we never allocate a register for the first time in pass 0. */ |