This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
PR opt/10392: Reload bug on SH
- From: <tm_gccmail at mail dot kloo dot net>
- To: ebotcazou at libertysurf dot fr
- Cc: gcc-patches at gcc dot gnu dot org
- Date: Mon, 29 Sep 2003 15:24:00 -0700 (PDT)
- Subject: PR opt/10392: Reload bug on SH
I tried your patch mentioned in:
http://gcc.gnu.org/ml/gcc-patches/2003-09/msg01083.html
This seems to cause a failure on stress-1.17/layer3.i,
compiled with -O2 -m4:
layer3.i: In function `III_dequantize_sample':
layer3.i:3515: error: insn does not satisfy its constraints:
(insn:HI 337 2471 2472 23 (set (mem/s:SI (plus:SI (reg:SI 2 r2)
(reg:SI 0 r0)) [5 max S4 A32])
(mem:SI (plus:SI (reg/f:SI 14 r14)
(const_int 72 [0x48])) [167 cb+0 S4 A32])) 123 {movsi_ie}
(insn_list 335 (nil))
(nil))
layer3.i:3515: internal compiler error: in reload_cse_simplify_operands,
at postreload.c:378
Evidently, it causes a memory-to-memory insn to be generated, which
doesn't exist on the SH4...
Testcase is available if you need it.
Toshi