mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-15 08:10:28 +08:00
expmed.c (expand_mult_const): Expand shift into temporary.
* expmed.c (expand_mult_const) <case alg_shift>: Expand shift into temporary. Emit move from temporary to accum, so REG_EQUAL note will be attached to this insn in correct mode. From-SVN: r162910
This commit is contained in:
parent
e2534738ee
commit
4caa21a13b
@ -1,3 +1,9 @@
|
||||
2010-08-05 Uros Bizjak <ubizjak@gmail.com>
|
||||
|
||||
* expmed.c (expand_mult_const) <case alg_shift>: Expand shift into
|
||||
temporary. Emit move from temporary to accum, so REG_EQUAL note will
|
||||
be attached to this insn in correct mode.
|
||||
|
||||
2010-08-05 Uros Bizjak <ubizjak@gmail.com>
|
||||
|
||||
* config/i386/i386.c (ix86_decompose_address): Check for SI_REG
|
||||
|
@ -2904,9 +2904,11 @@ expand_mult_const (enum machine_mode mode, rtx op0, HOST_WIDE_INT val,
|
||||
switch (alg->op[opno])
|
||||
{
|
||||
case alg_shift:
|
||||
accum = expand_shift (LSHIFT_EXPR, mode, accum,
|
||||
build_int_cst (NULL_TREE, log),
|
||||
NULL_RTX, 0);
|
||||
tem = expand_shift (LSHIFT_EXPR, mode, accum,
|
||||
build_int_cst (NULL_TREE, log),
|
||||
NULL_RTX, 0);
|
||||
/* REG_EQUAL note will be attached to the following insn. */
|
||||
emit_move_insn (accum, tem);
|
||||
val_so_far <<= log;
|
||||
break;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user