[llvm-commits] [llvm] r153815 - /llvm/trunk/lib/Analysis/InlineCost.cpp

Chandler Carruth chandlerc at gmail.com
Sat Mar 31 06:18:09 PDT 2012


Author: chandlerc
Date: Sat Mar 31 08:18:09 2012
New Revision: 153815

URL: http://llvm.org/viewvc/llvm-project?rev=153815&view=rev
Log:
Fix a typo reported in IRC by someone reviewing this code.

Modified:
    llvm/trunk/lib/Analysis/InlineCost.cpp

Modified: llvm/trunk/lib/Analysis/InlineCost.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/InlineCost.cpp?rev=153815&r1=153814&r2=153815&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/InlineCost.cpp (original)
+++ llvm/trunk/lib/Analysis/InlineCost.cpp Sat Mar 31 08:18:09 2012
@@ -266,7 +266,7 @@
   // FIXME: Check whether inlining will turn a dynamic alloca into a static
   // alloca, and handle that case.
 
-  // We will happily inline tatic alloca instructions or dynamic alloca
+  // We will happily inline static alloca instructions or dynamic alloca
   // instructions in always-inline situations.
   if (AlwaysInline || I.isStaticAlloca())
     return Base::visitAlloca(I);





More information about the llvm-commits mailing list