mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-17 20:23:59 +00:00
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:
@ -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();
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user