aboutsummaryrefslogtreecommitdiff
path: root/gcc/expmed.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>2000-12-16 15:43:55 +0000
committerRichard Kenner <kenner@gcc.gnu.org>2000-12-16 10:43:55 -0500
commit23cb454af9f1009e43b1051898d0f84adff4eed5 (patch)
treef038cfee770b1c497ce8981dc1822218658b02ee /gcc/expmed.c
parent3244472df9f0cfbb7eb7385025a718170b521606 (diff)
downloadgcc-23cb454af9f1009e43b1051898d0f84adff4eed5.zip
gcc-23cb454af9f1009e43b1051898d0f84adff4eed5.tar.gz
gcc-23cb454af9f1009e43b1051898d0f84adff4eed5.tar.bz2
* expmed.c (expand_mult): Write REG_EQUAL note with proper mode.
From-SVN: r38306
Diffstat (limited to 'gcc/expmed.c')
-rw-r--r--gcc/expmed.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/gcc/expmed.c b/gcc/expmed.c
index af5d36d..351dfe4 100644
--- a/gcc/expmed.c
+++ b/gcc/expmed.c
@@ -2401,6 +2401,7 @@ expand_mult (mode, op0, op1, target, unsignedp)
/* We found something cheaper than a multiply insn. */
int opno;
rtx accum, tem;
+ enum machine_mode nmode;
op0 = protect_from_queue (op0, 0);
@@ -2505,12 +2506,21 @@ expand_mult (mode, op0, op1, target, unsignedp)
}
/* Write a REG_EQUAL note on the last insn so that we can cse
- multiplication sequences. */
+ multiplication sequences. Note that if ACCUM is a SUBREG,
+ we've set the inner register and must properly indicate
+ that. */
+
+ tem = op0, nmode = mode;
+ if (GET_CODE (accum) == SUBREG)
+ {
+ nmode = GET_MODE (SUBREG_REG (accum));
+ tem = gen_lowpart (nmode, op0);
+ }
insn = get_last_insn ();
set_unique_reg_note (insn,
REG_EQUAL,
- gen_rtx_MULT (mode, op0,
+ gen_rtx_MULT (nmode, tem,
GEN_INT (val_so_far)));
}