[Bug target/47744] [x32] ICE: in reload_cse_simplify_operands, at postreload.c:403
hjl.tools at gmail dot com
gcc-bugzilla@gcc.gnu.org
Sun Jul 17 22:44:00 GMT 2011
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47744
--- Comment #22 from H.J. Lu <hjl.tools at gmail dot com> 2011-07-17 22:44:10 UTC ---
(In reply to comment #21)
> Ah, I see. So:
>
> case SUBREG:
> if (SUBREG_REG (op) != REG)
> return 0;
>
> Works OK, too.
Did you mean
case SUBREG:
if (GET_CODE (SUBREG_REG (op)) != REG)
return 0;
More information about the Gcc-bugs
mailing list