View | Details | Raw Unified | Return to bug 202134 | Differences between
and this patch

Collapse All | Expand All

(-)compiler/org/eclipse/jdt/internal/compiler/ClassFile.java (-2 / +2 lines)
Lines 6113-6119 Link Here
6113
					return;
6113
					return;
6114
				}
6114
				}
6115
			}
6115
			}
6116
			int opcode = u1At(bytecodes, 0, pc);
6116
			byte opcode = (byte) u1At(bytecodes, 0, pc);
6117
			switch (opcode) {
6117
			switch (opcode) {
6118
				case Opcodes.OPC_nop:
6118
				case Opcodes.OPC_nop:
6119
					pc++;
6119
					pc++;
Lines 7108-7114 Link Here
7108
					pc++;
7108
					pc++;
7109
					break;
7109
					break;
7110
				case Opcodes.OPC_wide:
7110
				case Opcodes.OPC_wide:
7111
					opcode = u1At(bytecodes, 1, pc);
7111
					opcode = (byte) u1At(bytecodes, 1, pc);
7112
					if (opcode == Opcodes.OPC_iinc) {
7112
					if (opcode == Opcodes.OPC_iinc) {
7113
						// index = u2At(bytecodes, 2, pc);
7113
						// index = u2At(bytecodes, 2, pc);
7114
						// i2At(bytecodes, 4, pc); // const
7114
						// i2At(bytecodes, 4, pc); // const

Return to bug 202134