This is the mail archive of the crossgcc@sourceware.org mailing list for the crossgcc project.

See the CrossGCC FAQ for lots more information.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

float problem with optimization on pcc platforms


Hello,

gcc -version : powerpc-apple-darwin8-gcc-4.0.1
glibc: 2.3.5

I created a ppc-860-linux toolchain on a ppc-G5-darwin platform.
I wrote a very basic test program:

--------------------------------------------
#include <stdio.h>

int main() {
  int ires = 200;
  float fres = (float)ires;

  printf("%d %f\n", ires, fres);

  return 0;
}
--------------------------------------------

Compiled with the following options:
> g++ main.cpp -O -o test
the program results in:
> ./test
200 0.000000

Compiled with:
> g++ main.cpp -g -o test
the result is:
> ./test
200 200.000000

What's the problem ?
Thanks in advance for any help.


--
For unsubscribe information see http://sourceware.org/lists.html#faq


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