view mxtool/ClasspathDump.java @ 15640:2208a130d636

HSAIL Deopt support for VirtualObjects. Only create the host graph is there are deopts. Add a test provided by Tom Deneau.
author Gilles Duboscq <duboscq@ssw.jku.at>
date Sun, 04 May 2014 18:58:16 +0200
parents a6bd486b1b44
children
line wrap: on
line source

public class ClasspathDump {
    public static void main(String[] args) {
        System.out.print(System.getProperty("sun.boot.class.path"));
        System.out.print("|");
        System.out.print(System.getProperty("java.ext.dirs"));
        System.out.print("|");
        System.out.print(System.getProperty("java.endorsed.dirs"));
    }
}