comparison src/share/vm/opto/callGenerator.cpp @ 6268:6c5b7a6becc8

7187454: stack overflow in C2 compiler thread on Solaris x86 Summary: Added new FormatBufferResource class to use thread's resource area for error message buffer. Reviewed-by: twisti
author kvn
date Mon, 30 Jul 2012 09:49:25 -0700
parents 1d7922586cf6
children 7a302948f5a4
comparison
equal deleted inserted replaced
6267:977007096840 6268:6c5b7a6becc8
735 } 735 }
736 } 736 }
737 break; 737 break;
738 738
739 default: 739 default:
740 fatal(err_msg("unexpected intrinsic %d: %s", iid, vmIntrinsics::name_at(iid))); 740 fatal(err_msg_res("unexpected intrinsic %d: %s", iid, vmIntrinsics::name_at(iid)));
741 break; 741 break;
742 } 742 }
743 return NULL; 743 return NULL;
744 } 744 }
745 745