You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexey Varlamov (JIRA)" <ji...@apache.org> on 2007/03/02 12:42:50 UTC

[jira] Closed: (HARMONY-3285) [drlvm][jit][opt] segfault in i8l

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

Alexey Varlamov closed HARMONY-3285.
------------------------------------

    Resolution: Fixed

Fixed at r513713.

> [drlvm][jit][opt] segfault in i8l
> ---------------------------------
>
>                 Key: HARMONY-3285
>                 URL: https://issues.apache.org/jira/browse/HARMONY-3285
>             Project: Harmony
>          Issue Type: Bug
>          Components: DRLVM
>         Environment: ia32
>            Reporter: Alexey Varlamov
>         Assigned To: Alexey Varlamov
>         Attachments: lowerer.diff, reg.3285.diff
>
>
> The DRLVM sometimes segfaults in optimizing modes on long comparisons, the minimal testcase is:
> class Test {
> public static void main(String[] s) {
> long ll = 234l;
> compare(ll);
> }
> static void compare(long ll) {
>         boolean flag = false;
>         if(ll >= 0L && ll > 0L && ll > 10L)
>         {
>             flag = true;        
>         }   
> }
> }

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