< prev index next >

test/compiler/c1/Test6756768.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke


   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @bug 6756768
  27  * @summary C1 generates invalid code
  28  *
  29  * @run main/othervm -Xcomp Test6756768
  30  */
  31 


  32 class Test6756768a
  33 {
  34     static boolean var_1 = true;
  35 }
  36 
  37 final class Test6756768b
  38 {
  39     static boolean var_24 = false;
  40     static int var_25 = 0;
  41 
  42     static boolean var_temp1 = Test6756768a.var_1 = false;
  43 }
  44 
  45 public final class Test6756768 extends Test6756768a
  46 {
  47     final static int var = var_1 ^ (Test6756768b.var_24 ? var_1 : var_1) ? Test6756768b.var_25 : 1;
  48 
  49     static public void main(String[] args) {
  50         if (var != 0) {
  51             throw new InternalError("var = " + var);


   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @bug 6756768
  27  * @summary C1 generates invalid code
  28  *
  29  * @run main/othervm -Xcomp compiler.c1.Test6756768
  30  */
  31 
  32 package compiler.c1;
  33 
  34 class Test6756768a
  35 {
  36     static boolean var_1 = true;
  37 }
  38 
  39 final class Test6756768b
  40 {
  41     static boolean var_24 = false;
  42     static int var_25 = 0;
  43 
  44     static boolean var_temp1 = Test6756768a.var_1 = false;
  45 }
  46 
  47 public final class Test6756768 extends Test6756768a
  48 {
  49     final static int var = var_1 ^ (Test6756768b.var_24 ? var_1 : var_1) ? Test6756768b.var_25 : 1;
  50 
  51     static public void main(String[] args) {
  52         if (var != 0) {
  53             throw new InternalError("var = " + var);
< prev index next >