Thread overview
DMC Math Bug
Aug 20, 2010
Andi Jahja
Aug 20, 2010
Walter Bright
Aug 20, 2010
Andi Jahja
Aug 20, 2010
Walter Bright
August 20, 2010
The following codes show DMC bug:

/--- begin ---
            #include <stdio.h>
            typedef struct
            {
               double         dd;
               long long int  ll;
            } UN;

            const char * cmp( UN * pU )
            {
               return pU->dd >= pU->ll ? "OK" : "ERRROR";
            }

            int main( void )
            {
               UN u = { 10.50, 10 };
               printf( "%s\n", cmp( &u ) );
               return 0;
            }

/--- end ---

Will this very bad bug be fixed?
--
Andi
August 20, 2010
Andi Jahja wrote:
> Will this very bad bug be fixed?

I don't have a schedule for it, but you can track it here:

http://bugzilla.digitalmars.com/issues/show_bug.cgi?id=79
August 20, 2010
On Fri, 20 Aug 2010 11:47:46 -0700, Walter Bright <newshound2@digitalmars.com> wrote:

>Andi Jahja wrote:
>> Will this very bad bug be fixed?
>
>I don't have a schedule for it, but you can track it here:
>
>http://bugzilla.digitalmars.com/issues/show_bug.cgi?id=79

Thanks, but this made DMC be trashed for serious application until the bug fixed.
--
Andi
August 20, 2010
Andi Jahja wrote:
> On Fri, 20 Aug 2010 11:47:46 -0700, Walter Bright
> <newshound2@digitalmars.com> wrote:
> 
>> Andi Jahja wrote:
>>> Will this very bad bug be fixed?
>> I don't have a schedule for it, but you can track it here:
>>
>> http://bugzilla.digitalmars.com/issues/show_bug.cgi?id=79
> 
> Thanks, but this made DMC be trashed for serious application until the
> bug fixed.

I understand, and I appreciate you taking the time to submit a bug report.