diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-12-25 15:15:10 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-12-25 15:15:10 +0000 |
commit | d55d8fc700fd75c7efb3f1e11d1d303cde2dd4d9 (patch) | |
tree | c9d2c0b2dd77109ef11a66cdf42b6e1a0fc4430e /gcc/ra.c | |
parent | 7a770d8b104d6ce00bf9d56b22dc6428b969f1ba (diff) | |
download | gcc-d55d8fc700fd75c7efb3f1e11d1d303cde2dd4d9.zip gcc-d55d8fc700fd75c7efb3f1e11d1d303cde2dd4d9.tar.gz gcc-d55d8fc700fd75c7efb3f1e11d1d303cde2dd4d9.tar.bz2 |
output.h: Fix comment typos.
* output.h: Fix comment typos.
* predict.c: Likewise.
* print-tree.c: Likewise.
* profile.c: Likewise.
* ra-build.c: Likewise.
* ra-colorize.c: Likewise.
* ra-debug.c: Likewise.
* ra-rewrite.c: Likewise.
* ra.c: Likewise.
* ra.h: Likewise.
* real.c: Likewise.
* recog.c: Likewise.
* reg-stack.c: Likewise.
* regclass.c: Likewise.
From-SVN: r60502
Diffstat (limited to 'gcc/ra.c')
-rw-r--r-- | gcc/ra.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -75,7 +75,7 @@ * Lattice based rematerialization * create definitions of ever-life regs at the beginning of the insn chain - * insert loads as soon, stores as late as possile + * insert loads as soon, stores as late as possible * insert spill insns as outward as possible (either looptree, or LCM) * reuse stack-slots * delete coalesced insns. Partly done. The rest can only go, when we get @@ -657,7 +657,7 @@ reg_alloc () /* If this is an empty function we shouldn't do all the following, but instead just setup what's necessary, and return. */ - /* We currently rely on the existance of the return value USE as + /* We currently rely on the existence of the return value USE as one of the last insns. Add it if it's not there anymore. */ if (last) { @@ -698,7 +698,7 @@ reg_alloc () /* Run regclass first, so we know the preferred and alternate classes for each pseudo. Deactivate emitting of debug info, if it's not - explicitely requested. */ + explicitly requested. */ if ((debug_new_regalloc & DUMP_REGCLASS) == 0) rtl_dump_file = NULL; regclass (get_insns (), max_reg_num (), rtl_dump_file); |