Searched defs:LastStore (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp421 /// LastStore - Keep track of the last non-volatile store that we saw... for
425 StoreInst *LastStore = 0; local
475 LastStore = 0;
496 LastStore = 0;
500 // If this instruction may read from memory, forget LastStore.
502 LastStore = 0;
534 if (LastStore &&
535 LastStore->getPointerOperand() == SI->getPointerOperand()) {
536 DEBUG(dbgs() << "EarlyCSE DEAD STORE: " << *LastStore << " due to: "
538 LastStore
[all...]

Completed in 130 milliseconds