2459N/A/*
2459N/A * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
2459N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2459N/A *
2459N/A * This code is free software; you can redistribute it and/or modify it
2459N/A * under the terms of the GNU General Public License version 2 only, as
2459N/A * published by the Free Software Foundation.
2459N/A *
2459N/A * This code is distributed in the hope that it will be useful, but WITHOUT
2459N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2459N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
2459N/A * version 2 for more details (a copy is included in the LICENSE file that
2459N/A * accompanied this code).
2459N/A *
2459N/A * You should have received a copy of the GNU General Public License version
2459N/A * 2 along with this work; if not, write to the Free Software Foundation,
2459N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2459N/A *
2459N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2459N/A * or visit www.oracle.com if you need additional information or have any
2459N/A * questions.
2459N/A *
2459N/A */
2459N/A
2459N/A/**
2459N/A * @test
2459N/A * @bug 7042153
2459N/A * @summary Bad folding of IfOps with unloaded constant arguments in C1
2459N/A *
2459N/A * @run main/othervm -Xcomp Test7042153
2459N/A */
2459N/A
2459N/Aimport java.lang.reflect.*;
2459N/A
2459N/Apublic class Test7042153 {
2459N/A static public class Bar { }
2459N/A static public class Foo { }
2459N/A
2459N/A static volatile boolean z;
2459N/A public static void main(String [] args) {
2459N/A Class cx = Bar.class;
2459N/A Class cy = Foo.class;
2459N/A z = (cx == cy);
2459N/A }
2459N/A}