diff options
author | Chris Lattner <sabre@nondot.org> | 2010-12-06 07:43:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-12-06 07:43:04 +0000 |
commit | cd3af96a8f59d5dd8b0d8c5f590f111c81d3e075 (patch) | |
tree | fc76752f82c49d874dbf6284da1e059ac65db3fd /llvm/lib/Transforms/Utils/InlineFunction.cpp | |
parent | 5b6a865f2e6e7258c2b544ea303aeeb2486d1d69 (diff) | |
download | bcm5719-llvm-cd3af96a8f59d5dd8b0d8c5f590f111c81d3e075.tar.gz bcm5719-llvm-cd3af96a8f59d5dd8b0d8c5f590f111c81d3e075.zip |
improve comment
llvm-svn: 120994
Diffstat (limited to 'llvm/lib/Transforms/Utils/InlineFunction.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/InlineFunction.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Utils/InlineFunction.cpp b/llvm/lib/Transforms/Utils/InlineFunction.cpp index d60f9080502..5cf0fed19f4 100644 --- a/llvm/lib/Transforms/Utils/InlineFunction.cpp +++ b/llvm/lib/Transforms/Utils/InlineFunction.cpp @@ -400,8 +400,7 @@ bool llvm::InlineFunction(CallSite CS, InlineFunctionInfo &IFI) { if (!isa<Constant>(AI->getArraySize())) continue; - // Keep track of the static allocas that we inline into the caller if the - // StaticAllocas pointer is non-null. + // Keep track of the static allocas that we inline into the caller. IFI.StaticAllocas.push_back(AI); // Scan for the block of allocas that we can move over, and move them |