comparison src/share/vm/opto/compile.cpp @ 4767:d12a66fa3820

7123954: Some CTW test crash with SIGSEGV Summary: Correct Allocate expansion code to preserve i_o when only slow call is generated. Reviewed-by: iveresov
author kvn
date Tue, 27 Dec 2011 15:08:43 -0800
parents 069ab3f976d3
children ee138854b3a6
comparison
equal deleted inserted replaced
4766:40c2484c09e1 4767:d12a66fa3820
2520 if (use->is_Proj() && p != use && use->as_Proj()->_con == p->_con) { 2520 if (use->is_Proj() && p != use && use->as_Proj()->_con == p->_con) {
2521 proj = use; 2521 proj = use;
2522 break; 2522 break;
2523 } 2523 }
2524 } 2524 }
2525 assert(p != NULL, "must be found"); 2525 assert(proj != NULL, "must be found");
2526 p->subsume_by(proj); 2526 p->subsume_by(proj);
2527 } 2527 }
2528 } 2528 }
2529 break; 2529 break;
2530 } 2530 }