search for: usememo

Displaying 1 result from an estimated 1 matches for "usememo".

Did you mean: usemem
2010 Feb 26
2
[LLVMdev] Possible SelectionDAG Bug
...try to track down problems we're seeing in SelectionDAG, I added the following assert toSelectionDAG::ReplaceAllUsesOfValuesWith: // Read up all the uses and make records of them. This helps // processing new uses that are introduced during the // replacement process. SmallVector<UseMemo, 4> Uses; for (unsigned i = 0; i != Num; ++i) { unsigned FromResNo = From[i].getResNo(); SDNode *FromNode = From[i].getNode(); #ifndef NDEBUG assert(FromNode->getOpcode() != ISD::DELETED_NODE && "FromNode deleted!"); #endif This triggers all over the place in...