view test/runtime/6929067/T.java @ 12785:c13633a4d472

peephole optimization to remove null checks at the LIR level
author Lukas Stadler <lukas.stadler@jku.at>
date Wed, 20 Nov 2013 12:09:33 +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");
  }
}