Really disable PRE.

llvm-svn: 52531
This commit is contained in:
Owen Anderson 2008-06-20 08:59:13 +00:00
parent 2616a7e0f7
commit 78fbcafb53
1 changed files with 1 additions and 1 deletions

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;