------- Comment #47 from drow at gcc dot gnu dot org 2006-11-05 22:25 ------- Subject: Re: [4.0/4.1 Regression] alias bug with cast and call clobbered
On Sun, Nov 05, 2006 at 10:17:16PM -0000, chuck at vertica dot com wrote: > Folks, can anyone please tell me if this is the same problem as I am seeing > here using gcc 4.0.2 for x86_64: No. Your code is simply invalid; this is a FAQ. > inline long long Vgetbytes(double f) { > return *reinterpret_cast<const long long *>(&f); > } "f" is an object of type double and may not be accessed through a pointer to "const long long". -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28778