Really disable PRE.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52531 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Owen Anderson 2008-06-20 08:59:13 +00:00
parent f6af087cb9
commit f2204d7bb1

View File

@ -1328,7 +1328,7 @@ bool GVN::iterateOnFunction(Function &F) {
DE = df_end(DT.getRootNode()); DI != DE; ++DI)
changed |= processBlock(*DI);
if (!EnablePRE)
if (EnablePRE)
changed |= performPRE(F);
return changed;