aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-05-01 01:26:13 +0000
committerChris Lattner <sabre@nondot.org>2010-05-01 01:26:13 +0000
commit1708d84108e60703f6a3a90c5698e5f7c7f2d6fe (patch)
tree465981912f7b0a91582dc7e26dd00ce71d8a1dc6 /include/llvm/Transforms
parente6f8d63a0fa6d836b11ad2bb843c9c98ccc4710e (diff)
downloadexternal_llvm-1708d84108e60703f6a3a90c5698e5f7c7f2d6fe.zip
external_llvm-1708d84108e60703f6a3a90c5698e5f7c7f2d6fe.tar.gz
external_llvm-1708d84108e60703f6a3a90c5698e5f7c7f2d6fe.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/llvm/Transforms')
-rw-r--r--include/llvm/Transforms/Utils/Cloning.h9
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();
}
};