1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Attempt to fix the bootstrap buildbot. Rafael says this works for him on x86-64 Linux.

llvm-svn: 123270
This commit is contained in:
Cameron Zwarich 2011-01-11 20:23:34 +00:00
parent 264d2e5c08
commit e8c1c44e01

View File

@ -2011,6 +2011,7 @@ bool GVN::iterateOnFunction(Function &F) {
RE = RPOT.end(); RI != RE; ++RI)
Changed |= processBlock(*RI);
#else
DT->DT->recalculate(F);
for (df_iterator<DomTreeNode*> DI = df_begin(DT->getRootNode()),
DE = df_end(DT->getRootNode()); DI != DE; ++DI)
Changed |= processBlock(DI->getBlock());