diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-10-17 11:30:22 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-10-17 11:30:22 -0400 |
commit | a86477661406f2ebe7ac3590c4c59a31769ca282 (patch) | |
tree | b74575e6375b1cc9d85756fd6507b7f089cdee6d | |
parent | ca72f752bfe58121ad60f17434fa5f9906fb5c1a (diff) | |
download | gcc-a86477661406f2ebe7ac3590c4c59a31769ca282.zip gcc-a86477661406f2ebe7ac3590c4c59a31769ca282.tar.gz gcc-a86477661406f2ebe7ac3590c4c59a31769ca282.tar.bz2 |
Update comment.
From-SVN: r8283
-rw-r--r-- | gcc/recog.c | 6 | ||||
-rw-r--r-- | gcc/reload.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gcc/recog.c b/gcc/recog.c index 1072fe9..a09a1d9 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -1718,9 +1718,9 @@ constrain_operands (insn_code_num, strict) case 'p': /* p is used for address_operands. When we are called by - gen_input_reload, no one will have checked that the - address is strictly valid, i.e., that all pseudos - requiring hard regs have gotten them. */ + gen_reload, no one will have checked that the address is + strictly valid, i.e., that all pseudos requiring hard regs + have gotten them. */ if (strict <= 0 || (strict_memory_address_p (insn_operand_mode[insn_code_num][opno], op))) diff --git a/gcc/reload.c b/gcc/reload.c index 57c238e..e893841 100644 --- a/gcc/reload.c +++ b/gcc/reload.c @@ -2417,7 +2417,7 @@ find_reloads (insn, replace, ind_levels, live_known, reload_reg_p) && &SET_DEST (set) == recog_operand_loc[i]); else if (code == PLUS) /* We can get a PLUS as an "operand" as a result of - register elimination. See eliminate_regs and gen_input_reload. */ + register elimination. See eliminate_regs and gen_reload. */ substed_operand[i] = recog_operand[i] = *recog_operand_loc[i] = find_reloads_toplev (recog_operand[i], i, address_type[i], ind_levels, 0); |