hotspot/test/compiler/7123108/Test7123108.java
author jlahoda
Tue, 26 Nov 2013 15:27:19 +0100
changeset 21896 f39003ba351f
parent 11432 c731e8d846ce
permissions -rw-r--r--
8026374: javac accepts void as a method parameter Summary: Changing Check.validate to reject void types. Reviewed-by: jjg, vromero
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11432
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
     1
/*
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
     2
 * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
     4
 *
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
     7
 * published by the Free Software Foundation.
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
     8
 *
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    13
 * accompanied this code).
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    14
 *
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    18
 *
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    21
 * questions.
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    22
 *
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    23
 */
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    24
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    25
/**
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    26
 * @test
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    27
 * @bug 7123108
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    28
 * @summary C1 crashes with assert(if_state != NULL) failed: states do not match up
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    29
 *
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    30
 * @run main/othervm -Xcomp Test7123108
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    31
 */
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    32
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    33
public class Test7123108 {
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    34
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    35
    static class Test_Class_0 {
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    36
        final static byte var_2 = 67;
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    37
        byte var_3;
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    38
    }
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    39
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    40
    Object var_25 = "kgfpyhcms";
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    41
    static long var_27 = 6899666748616086528L;
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    42
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    43
    static float func_1()
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    44
    {
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    45
        return 0.0F;
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    46
    }
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    47
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    48
    private void test()
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    49
    {
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    50
        "dlwq".charAt(((short)'x' > var_27 | func_1() <= (((Test_Class_0)var_25).var_3) ? true : true) ? Test_Class_0.var_2 & (short)-1.1173839E38F : 'Y');
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    51
    }
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    52
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    53
    public static void main(String[] args)
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    54
    {
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    55
        Test7123108 t = new Test7123108();
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    56
        try {
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    57
            t.test();
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    58
        } catch (Throwable e) { }
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    59
    }
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    60
}