This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tree-optimization/53385] [4.8 Regression] "Error: operand out of range" after changes for LSHIFT_EXPR in vrp.c


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53385

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #9 from Jakub Jelinek <jakub at gcc dot gnu.org> 2012-05-18 08:17:42 UTC ---
Isn't this just a fancy way of saying
  i = val ? clz_hwi (val) - 1 : HOST_BITS_PER_WIDE_INT;
?  Note that the predicate ensures that the whole operand isn't 0,
so one might as well use just i = clzi_hwi (val) - 1; and just adjust the
else if (GET_CODE (x) == CONST_DOUBLE && i == 32)
test to compare i == 31 instead (and tweak the body not to i-- if the low hwi
is negative and do another clz_hwi otherwise).


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]