diff options
author | Chris Lattner <sabre@nondot.org> | 2010-05-01 01:26:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-05-01 01:26:13 +0000 |
commit | 0ca2f28458ae9122f413a4092ddcee33a9dd21c6 (patch) | |
tree | 465981912f7b0a91582dc7e26dd00ce71d8a1dc6 /include | |
parent | 6da12e6767100d3f874c2e05aae74e4fe24357b1 (diff) | |
download | external_llvm-0ca2f28458ae9122f413a4092ddcee33a9dd21c6.zip external_llvm-0ca2f28458ae9122f413a4092ddcee33a9dd21c6.tar.gz external_llvm-0ca2f28458ae9122f413a4092ddcee33a9dd21c6.tar.bz2 |
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
Diffstat (limited to 'include')
-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 463c5d4..22bdc99 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(); } }; |