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 middle-end/25186] (short)(((int)short_var) <<1) should be folded so that the shift is done in the short type



------- Comment #5 from rguenth at gcc dot gnu dot org  2005-12-01 12:46 -------
I.e. 6.3.1.3/3 says that conversion from type T to signed type is
implementation defined if the value doesn't fit.  And we define it to reducing
it modulo 2^N.

So, for !flag_wrapv

  (short)((int)0x8000 << 1) == 0

but
  0x8000 << 1  is undefined.

So this transformation is only ok for flag_wrapv.


-- 


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


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