[PM] Change enum => enum class everywhere in the PM code. Additionally fix some typos.

Swift SVN r13507
This commit is contained in:
Michael Gottesman
2014-02-05 21:25:15 +00:00
parent e06f98cabd
commit 631f9326ab
22 changed files with 44 additions and 41 deletions

View File

@@ -337,7 +337,7 @@ class SILCodeMotion : public SILFunctionTrans {
for (auto &BB : F)
sinkCodeFromPredecessors(&BB);
PM->invalidateAllAnalisys(&F, SILAnalysis::IK_Instructions);
PM->invalidateAllAnalysis(&F, SILAnalysis::InvalidationKind::Instructions);
}
};