You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Mark Hindess (JIRA)" <ji...@apache.org> on 2009/07/17 20:38:14 UTC

[jira] Resolved: (HARMONY-6276) [luni][lang] Float.toString() can give wrong string and throws ArrayIndexOutOfBoundsException on AIX 32bit

     [ https://issues.apache.org/jira/browse/HARMONY-6276?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Hindess resolved HARMONY-6276.
-----------------------------------

       Resolution: Fixed
    Fix Version/s: 5.0M11

Thanks Catherine. I've applied your patch at r795188.  Please confirm it has been applied as expected and if so, please  close this JIRA.


> [luni][lang] Float.toString() can give wrong string and throws ArrayIndexOutOfBoundsException on AIX 32bit
> ----------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-6276
>                 URL: https://issues.apache.org/jira/browse/HARMONY-6276
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>         Environment: AIX PPC 32bit
>            Reporter: Catherine Hope
>            Assignee: Mark Hindess
>             Fix For: 5.0M11
>
>         Attachments: 6276-patch.txt
>
>
> Float.toString() fails on AIX 32 bit for the following float values:
>        Float f;
>        // 1E19F (and above) displays as "@.0E19"
>        f = 1E19F; 
>        System.out.println("1E19F: " + f);
>        
>        // 1E-36F displays completely wrong value
>        f = 1E-36F;
>        System.out.println("1E-36F: " + f);
>        
>        // and 1E-38F (and below) throws an ArrayIndexOutOfBoundsException: Array index out of range: 25
>        f = 1E-38F ;
>        System.out.println("1E-37F: " + f);

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.