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]
Other format: [Raw text]

Re: Strict aliasing and converting binary patterns between integer and float


    I need to convert back and forth between an unsigned int and the float
    with the same binary pattern (admitting I knows they're the same size
    - 32bits - in the first place).  

    WHile this very simple example may still work with -fstrict-aliasing,
    as soon as you have a more complex function the value of v2 is not
    always what is expected.

    So my question is, what is a reliable way to do this conversion with
    gcc and strict aliasing enabled?

Use a union.


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