mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
* config/m32r/m32r.md: Remove useless calls to gen_lowpart.
From-SVN: r75944
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2004-01-15 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* config/m32r/m32r.md: Remove useless calls to gen_lowpart.
|
||||
|
||||
2004-01-15 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* config/h8300/coff.h: Replace Hitachi with Renesas.
|
||||
|
||||
@@ -839,11 +839,10 @@
|
||||
(match_dup 3)]
|
||||
"
|
||||
{
|
||||
rtx op0 = gen_lowpart (SImode, operands[0]);
|
||||
rtx shift = GEN_INT (24);
|
||||
|
||||
operands[2] = gen_ashlsi3 (op0, op0, shift);
|
||||
operands[3] = gen_ashrsi3 (op0, op0, shift);
|
||||
operands[2] = gen_ashlsi3 (operands[0], operands[0], shift);
|
||||
operands[3] = gen_ashrsi3 (operands[0], operands[0], shift);
|
||||
}")
|
||||
|
||||
(define_insn "extendhisi2"
|
||||
@@ -865,11 +864,10 @@
|
||||
(match_dup 3)]
|
||||
"
|
||||
{
|
||||
rtx op0 = gen_lowpart (SImode, operands[0]);
|
||||
rtx shift = GEN_INT (16);
|
||||
|
||||
operands[2] = gen_ashlsi3 (op0, op0, shift);
|
||||
operands[3] = gen_ashrsi3 (op0, op0, shift);
|
||||
operands[2] = gen_ashlsi3 (operands[0], operands[0], shift);
|
||||
operands[3] = gen_ashrsi3 (operands[0], operands[0], shift);
|
||||
}")
|
||||
|
||||
;; Arithmetic instructions.
|
||||
|
||||
Reference in New Issue
Block a user