rename InlineInfo.DevirtualizedCalls -> InlinedCalls to

reflect that it includes all inlined calls now, not just
devirtualized ones.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102824 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2010-05-01 01:26:13 +00:00
parent 6da12e6767
commit 0ca2f28458
3 changed files with 13 additions and 14 deletions

View File

@ -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();
}
};