[llvm-commits] [llvm] r120994 - /llvm/trunk/lib/Transforms/Utils/InlineFunction.cpp

Chris Lattner sabre at nondot.org
Sun Dec 5 23:43:04 PST 2010


Author: lattner
Date: Mon Dec  6 01:43:04 2010
New Revision: 120994

URL: http://llvm.org/viewvc/llvm-project?rev=120994&view=rev
Log:
improve comment

Modified:
    llvm/trunk/lib/Transforms/Utils/InlineFunction.cpp

Modified: llvm/trunk/lib/Transforms/Utils/InlineFunction.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Utils/InlineFunction.cpp?rev=120994&r1=120993&r2=120994&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Utils/InlineFunction.cpp (original)
+++ llvm/trunk/lib/Transforms/Utils/InlineFunction.cpp Mon Dec  6 01:43:04 2010
@@ -400,8 +400,7 @@
       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





More information about the llvm-commits mailing list