Handle functions with multiple exit blocks properly.

llvm-svn: 37539
This commit is contained in:
Owen Anderson 2007-06-11 16:25:17 +00:00
parent c43f32b935
commit d184c18074
1 changed files with 6 additions and 0 deletions

View File

@ -526,6 +526,9 @@ bool GVNPRE::runOnFunction(Function &F) {
df_begin(PDT.getRootNode()), E = df_end(PDT.getRootNode());
PDI != E; ++PDI) {
BasicBlock* BB = PDI->getBlock();
if (BB == 0)
continue;
DOUT << "Block: " << BB->getName() << "\n";
DOUT << "TMP_GEN: ";
dump(generatedTemporaries[BB]);
@ -635,6 +638,9 @@ bool GVNPRE::runOnFunction(Function &F) {
E = df_end(DT.getRootNode()); DI != E; ++DI) {
BasicBlock* BB = DI->getBlock();
if (BB == 0)
continue;
std::set<Value*, ExprLT>& new_set = new_sets[BB];
std::set<Value*, ExprLT>& availOut = availableOut[BB];
std::set<Value*, ExprLT>& anticIn = anticipatedIn[BB];