[Bug target/30406] ICE in LOGICAL(8) functions
pinskia at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Wed Jan 10 23:04:00 GMT 2007
------- Comment #19 from pinskia at gcc dot gnu dot org 2007-01-10 23:04 -------
if ((INTEGRAL_TYPE_P (valtype)
&& TYPE_PRECISION (valtype) < BITS_PER_WORD)
|| POINTER_TYPE_P (valtype))
mode = TARGET_32BIT ? SImode : DImode;
else
mode = TYPE_MODE (valtype);
--------------------------
I think this should be written as:
if ((INTEGRAL_TYPE_P (valtype)
&& TYPE_PRECISION (valtype) < BITS_PER_WORD)
|| POINTER_TYPE_P (valtype))
mode = TARGET_32BIT ? SImode : DImode;
else
mode = TYPE_MODE (valtype);
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30406
More information about the Gcc-bugs
mailing list