[PATCH] D12087: always_inline codegen rewrite
Evgeniy Stepanov via cfe-commits
cfe-commits at lists.llvm.org
Mon Aug 17 14:02:49 PDT 2015
eugenis added inline comments.
================
Comment at: lib/CodeGen/CodeGenModule.cpp:513
@@ +512,3 @@
+void CodeGenModule::RewriteAlwaysInlineFunctions() {
+ for (llvm::Function *Fn : AlwaysInlineFunctions)
+ RewriteAlwaysInlineFunction(Fn);
----------------
Done. Should I make it a "SmallSetVector"? The number of always_inline functions seems very unpredictable and usually quite big, so it would not help, I guess.
http://reviews.llvm.org/D12087
More information about the cfe-commits
mailing list