I recently was making a change to to our codebase from float to long for some variables, and discovered that there were no error messages generated by the compiler in areas ...
I'm writing C for the PIC32MX, compiled with Microchip's PIC32 C compiler (based on GCC 3.4).
Added The standard I'm following is GNU99 (C99 with GNU extensions, compiler flag -std=gnu99)
My problem is ...
I'm working with a client who is using an old version of GCC (3.2.3 to be precise) but wants to upgrade and one reason that's been given as stumbling block to ...
The following code works as expected for me under 64-bits, but fails under 32-bit at -O2 and -O3, the expected output is 1.1, under the bugged systems it prints 1.0. ...
I haven't yet created a program to see whether GCC will need it passed, When I do I'd like to know how I'd go about enabling strict floating point mode which ...