Bug 16396 - Math problem under IA-64
Summary: Math problem under IA-64
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: Red Hat Linux
Classification: Retired
Component: gcc
Version: 7.1
Hardware: ia64
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Jakub Jelinek
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2000-08-16 21:06 UTC by Nathaniel Woods
Modified: 2007-04-18 16:28 UTC (History)
0 users

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2004-10-01 20:34:51 UTC
Embargoed:


Attachments (Terms of Use)

Description Nathaniel Woods 2000-08-16 21:06:30 UTC
Take this C program:

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

main()
{
     double d;

     d = 1.401298 * pow(10, -45);
     printf("d=%g\n", (double) (float) d);
}


One would expect that the output would be 1.401298e-45 or 0 if a float
cannot contain this number.  Instead, I get 2.65249e-315.  Whats up
with this?

Comment 1 Richard Henderson 2004-10-01 20:34:51 UTC
Works at least as of glibc-2.3.2-95.6.


Note You need to log in before you can comment on or make changes to this bug.