This is the mail archive of the gcc@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]

aliasing nastiness


Hello,

I'm having a problem reading a double value from a character buffer.
Apparently the value stored in tmp (see below) differs between linux
and Win9x. I am aware of the fact that this is violating the ISO C
aliasing
assumptions and have compiled my project with the -fno-strict-aliasing
flag.  My question is : is there any way to make the value that gets
stored into tmp identical across both platforms?

double FillDouble( char * buffer )
{
	double tmp = *(double*)buffer;

	return tmp;
}

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