[Bug middle-end/19983] __builtin_nan should allow 0X as well as 0x

2006-02-27 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-02-27 20:25 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|NEW

[Bug middle-end/19983] __builtin_nan should allow 0X as well as 0x

2006-02-26 Thread sayle at gcc dot gnu dot org
--- Comment #3 from sayle at gcc dot gnu dot org 2006-02-27 02:26 --- Subject: Bug 19983 Author: sayle Date: Mon Feb 27 02:25:57 2006 New Revision: 111470 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=111470 Log: PR middle-end/19983 * real.c (real_nan): Allow b

[Bug middle-end/19983] __builtin_nan should allow 0X as well as 0x

2005-02-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-02-15 21:28 --- The bug is very obvious from the code: if (*str == '0') { if (*++str == 'x') str++, base = 16; else base = 8; } Note no check for the uperca

[Bug middle-end/19983] __builtin_nan should allow 0X as well as 0x

2005-02-15 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-02-15 21:14 --- Confirmed. -- What|Removed |Added Status|UNCONFIRMED |NEW E