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

Re: How to type-pun and why


 Mattias Engdegård <mattias@virtutech.se> writes:

| Using a union intermediate instead,
| 
|   union { double d; uint64_t x; } u;
|   u.d = something;
|   uint64_t x = u.x;
| 
| works as expected, but I would like to know why - if it is a matter of luck
| with the current implementation it might cease working when the compiler
| changes or becomes more aggressive in the future.

that union trick is invalid as well, from the standard point of view.
However, GCC makes a guarantee that it will be supported.


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