View | Details | Raw Unified | Return to bug 137298
Collapse All | Expand All

(-)compiler/org/eclipse/jdt/internal/compiler/flow/UnconditionalFlowInfo.java (+4 lines)
Lines 1391-1396 Link Here
1391
		int i;
1391
		int i;
1392
		if (otherHasNulls) {
1392
		if (otherHasNulls) {
1393
			for (i = 0; i < mergeLimit; i++) {
1393
			for (i = 0; i < mergeLimit; i++) {
1394
				this.extra[0][i] &= 
1395
					otherInits.extra[0][i];
1396
				this.extra[1][i] |= 
1397
					otherInits.extra[1][i];
1394
				this.extra[2][i] =
1398
				this.extra[2][i] =
1395
					(a1 = this.extra[2][i]) & 
1399
					(a1 = this.extra[2][i]) & 
1396
					(b1 = otherInits.extra[2][i]) & (
1400
					(b1 = otherInits.extra[2][i]) & (

Return to bug 137298