comparison test/compiler/5091921/Test6985295.java @ 3345:bad7ecd0b6ed

5091921: Sign flip issues in loop optimizer Summary: Fix integer overflow problem in the code generated by loop optimizer. Reviewed-by: never
author kvn
date Wed, 04 May 2011 13:12:42 -0700
parents
children
comparison
equal deleted inserted replaced
3344:0139aac70fb5 3345:bad7ecd0b6ed
1 /*
2 * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
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 /**
26 * @test
27 * @bug 6985295
28 * @summary JVM fails to evaluate condition randomly
29 *
30 * @run main/othervm -Xbatch Test6985295
31 */
32
33 public class Test6985295 {
34
35 public static void main(String[] args) {
36 int min = Integer.MAX_VALUE-50000;
37 int max = Integer.MAX_VALUE;
38 System.out.println("max = " + max);
39 long counter = 0;
40 int i;
41 for(i = min; i <= max; i++) {
42 counter++;
43 if (counter > 1000000) {
44 System.out.println("Passed");
45 System.exit(95);
46 }
47 }
48 System.out.println("iteration went " + counter + " times (" + i + ")");
49 System.out.println("FAILED");
50 System.exit(97);
51 }
52 }
53