langtools/make/test/HelloWorld.apt.gold.txt
author goetz
Fri, 15 Nov 2013 11:05:32 -0800
changeset 22845 d8812d0ff387
parent 10 06bc494ca11e
permissions -rw-r--r--
8024921: PPC64 (part 113): Extend Load and Store nodes to know about memory ordering Summary: Add a field to C2 LoadNode and StoreNode classes which indicates whether the load/store should do an acquire/release on platforms which support it. Reviewed-by: kvn


/**
 * This class is used to test the results of the langtools build.
 */
public class HelloWorld {

  public HelloWorld();

  /**
   * The old standby!
   * @param args The parameters are ignored.
   */
  public static void main(java.lang.String... args);

  /**
   * This declaration is for the benefit of javah tests.
   */
  public native void test();
}