test/compiler/6700047/Test6700047.java
*** 27,36 **** --- 27,38 ---- * @summary C2 failed in idom_no_update * @run main Test6700047 */ public class Test6700047 { + static byte[] dummy = new byte[256]; + public static void main(String[] args) { for (int i = 0; i < 100000; i++) { intToLeftPaddedAsciiBytes(); } }
*** 51,60 **** --- 53,63 ---- } } if (offset > 0) { for(int j = 0; j < offset; j++) { result++; + dummy[i] = 0; } } return result; } }