view test/runtime/6929067/T.java @ 13635:e57115c41164

Make a separate phase to use trapping null checks instead of branches when implicitNullCheckLimit > 0
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 14 Jan 2014 16:27:14 +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");
  }
}