view test/runtime/6929067/T.java @ 19714:b503dd4e723c

Perform full schedule for conditional elimination only in a phase where floating guards are available.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Mon, 09 Mar 2015 12:03:48 +0100
parents 3b3d12e645e7
children
line wrap: on
line source

public class T
{
  public static boolean foo(boolean bar)
  {
    return bar;
  }

  public static void printIt()
  {
    System.out.println("Hello");
  }
}