i386-gen: preserve fp control word in gen_cvt_ftoi
commit73faaea227a53e365dd75f1dba7a5071c7b5e541
authorgrischka <grischka>
Wed, 28 Aug 2013 20:55:05 +0000 (28 22:55 +0200)
committergrischka <grischka>
Wed, 28 Aug 2013 20:55:05 +0000 (28 22:55 +0200)
treeb7ff7cfd171d27d24ec4ceb4df8cf98f3341fd82
parent69c2e7f96c95ba088657ce8bb9754c12c3e89397
i386-gen: preserve fp control word in gen_cvt_ftoi

- Use runtime function for conversion
- Also initialize fp with tcc -run on windows

This fixes a bug where
  double x = 1.0;
  double y = 1.0000000000000001;
  double z = x < y ? 0 : sqrt (x*x - y*y);
caused a bad sqrt because rounding precision for the x < y comparison
was different to the one used within the sqrt function.

This also fixes a bug where
  printf("%d, %d", (int)pow(10, 2), (int)pow(10, 2));
would print
  100, 99

Unrelated:
  win32: document relative include & lib lookup
  win32: normalize_slashes: do not mirror silly gcc behavior
  This reverts part of commit 8a81f9e1036637e21a47e14fb56bf64133546890
  winapi: add missing WINAPI decl. for some functions
i386-gen.c
lib/libtcc1.c
libtcc.c
tcc.h
tccpe.c
tccrun.c
tcctok.h
win32/include/winapi/winbase.h
win32/lib/crt1.c
win32/lib/wincrt1.c
win32/tcc-win32.txt