kvn@5763: /* kvn@5763: * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. kvn@5763: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. kvn@5763: * kvn@5763: * This code is free software; you can redistribute it and/or modify it kvn@5763: * under the terms of the GNU General Public License version 2 only, as kvn@5763: * published by the Free Software Foundation. kvn@5763: * kvn@5763: * This code is distributed in the hope that it will be useful, but WITHOUT kvn@5763: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or kvn@5763: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License kvn@5763: * version 2 for more details (a copy is included in the LICENSE file that kvn@5763: * accompanied this code). kvn@5763: * kvn@5763: * You should have received a copy of the GNU General Public License version kvn@5763: * 2 along with this work; if not, write to the Free Software Foundation, kvn@5763: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. kvn@5763: * kvn@5763: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA kvn@5763: * or visit www.oracle.com if you need additional information or have any kvn@5763: * questions. kvn@5763: */ kvn@5763: kvn@5763: /* kvn@5763: * @test kvn@5763: * @bug 8022585 kvn@5763: * @summary VM crashes when ran with -XX:+PrintInlining iignatyev@5985: * @run main/othervm -Xcomp -XX:+UnlockDiagnosticVMOptions -XX:+PrintInlining PrintInlining kvn@5763: * kvn@5763: */ kvn@5763: kvn@5763: public class PrintInlining { kvn@5763: public static void main(String[] args) { kvn@5763: System.out.println("Passed"); kvn@5763: } kvn@5763: }