diff options
Diffstat (limited to 'include/llvm/Transforms/Utils/Cloning.h')
-rw-r--r-- | include/llvm/Transforms/Utils/Cloning.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/llvm/Transforms/Utils/Cloning.h b/include/llvm/Transforms/Utils/Cloning.h index 463c5d48e9..22bdc99ac1 100644 --- a/include/llvm/Transforms/Utils/Cloning.h +++ b/include/llvm/Transforms/Utils/Cloning.h @@ -176,14 +176,13 @@ public: /// get copied into the caller. SmallVector<AllocaInst*, 4> StaticAllocas; - /// DevirtualizedCalls - InlineFunction fills this in with callsites that were - /// inlined from the callee that went from being indirect calls to direct - /// calls due to inlining. This is only filled in if CG is non-null. - SmallVector<WeakVH, 2> DevirtualizedCalls; + /// InlinedCalls - InlineFunction fills this in with callsites that were + /// inlined from the callee. This is only filled in if CG is non-null. + SmallVector<WeakVH, 8> InlinedCalls; void reset() { StaticAllocas.clear(); - DevirtualizedCalls.clear(); + InlinedCalls.clear(); } }; |