[PATCH] D52708: Add support for new pass manager
Teresa Johnson via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 2 08:24:58 PDT 2018
tejohnson accepted this revision.
tejohnson added a comment.
This revision is now accepted and ready to land.
LGTM with one minor fix noted below. Thanks! I will give it a shot with our apps which use the new PM.
================
Comment at: lib/Transforms/IPO/PassManagerBuilder.cpp:107
-cl::opt<bool> EnableHotColdSplit("hot-cold-split", cl::init(false), cl::Hidden,
- cl::desc("Enable hot-cold splitting pass"));
-
+cl::opt<bool> EnableHotColdSplit("hot-cold-split", cl::init(false),
+ cl::Hidden, cl::desc("Enable hot-cold splitting pass"));
----------------
nit: these lines now have a spurious change (line wrapping changed) which can be removed before commit.
https://reviews.llvm.org/D52708
More information about the llvm-commits
mailing list