thartmann@7194: /* thartmann@7194: * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. thartmann@7194: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. thartmann@7194: * thartmann@7194: * This code is free software; you can redistribute it and/or modify it thartmann@7194: * under the terms of the GNU General Public License version 2 only, as thartmann@7194: * published by the Free Software Foundation. thartmann@7194: * thartmann@7194: * This code is distributed in the hope that it will be useful, but WITHOUT thartmann@7194: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or thartmann@7194: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License thartmann@7194: * version 2 for more details (a copy is included in the LICENSE file that thartmann@7194: * accompanied this code). thartmann@7194: * thartmann@7194: * You should have received a copy of the GNU General Public License version thartmann@7194: * 2 along with this work; if not, write to the Free Software Foundation, thartmann@7194: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. thartmann@7194: * thartmann@7194: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA thartmann@7194: * or visit www.oracle.com if you need additional information or have any thartmann@7194: * questions. thartmann@7194: */ thartmann@7194: thartmann@7194: /** thartmann@7194: * @test thartmann@7194: * @bug 8044538 thartmann@7194: * @summary assert hit while printing relocations for jump table entries thartmann@7194: * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -Xcomp -XX:+PrintRelocations TestPrintRelocations thartmann@7194: */ thartmann@7194: thartmann@7194: /** thartmann@7194: * The test compiles all methods (-Xcomp) and prints their relocation thartmann@7194: * entries (-XX:+PrintRelocations) to make sure the printing works. thartmann@7194: */ thartmann@7194: public class TestPrintRelocations { thartmann@7194: thartmann@7194: static public void main(String[] args) { } thartmann@7194: }