Allocating too large an array for ReachibilityMatrix.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29367 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2006-07-27 22:35:40 +00:00
parent 5fa5de80e2
commit b3c334674d

View File

@ -281,8 +281,11 @@ void X86DAGToDAGISel::DetermineTopologicalOrdering() {
void X86DAGToDAGISel::DeterminReachibility(SDNode *f, SDNode *t) {
if (!ReachibilityMatrix) {
DetermineTopologicalOrdering();
ReachibilityMatrix = new unsigned char[DAGSize * DAGSize];
memset(ReachibilityMatrix, 0, DAGSize * DAGSize * sizeof(unsigned char));
unsigned RMSize = DAGSize * DAGSize / 8;
if ((DAGSize * DAGSize) % 8)
RMSize++;
ReachibilityMatrix = new unsigned char[RMSize];
memset(ReachibilityMatrix, 0, RMSize);
}
int Idf = f->getNodeId();