You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Mikhail Fursov (JIRA)" <ji...@apache.org> on 2007/08/15 09:09:33 UTC

[jira] Assigned: (HARMONY-2748) [drlvm][jit] Server-static mode: problem with 'reassoc' optimization pass.

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

Mikhail Fursov reassigned HARMONY-2748:
---------------------------------------

    Assignee: Mikhail Fursov

> [drlvm][jit] Server-static mode: problem with 'reassoc' optimization pass.
> --------------------------------------------------------------------------
>
>                 Key: HARMONY-2748
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2748
>             Project: Harmony
>          Issue Type: Bug
>          Components: DRLVM
>            Reporter: Mikhail Fursov
>            Assignee: Mikhail Fursov
>
> This test fails in -Xem:server_static mode. It's passed if 'reassoc' pass it turned off.
> public class Test {
>     public static void main(String args[]) {
>         int x=1;
>         for (int i=0; i<1000; i++) {
>             x +=i;
>         }
>         x+=x;
>         x+=x;
>         x+=x;
>         x+=x;
>         x+=x;
>         x+=x;
>         x+=x;
>         x+=x;//8
>         x+=x;
>         x+=x;
>         x+=x;
>         x+=x;
>         x+=x;
>         x+=x;
>         x+=x;//16
>         System.out.println(x);
>     }
> }

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