diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-03-31 13:18:09 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-03-31 13:18:09 +0000 |
commit | f5f256cffd7535d31dc24e7c9166f2084fe66e47 (patch) | |
tree | 0ecd4434c613bef65a77a4c2042c07136c2d58a8 /lib/Analysis/InlineCost.cpp | |
parent | b594a84df501385e4d90bd9531084be62cef0857 (diff) |
Fix a typo reported in IRC by someone reviewing this code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153815 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/InlineCost.cpp')
-rw-r--r-- | lib/Analysis/InlineCost.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/InlineCost.cpp b/lib/Analysis/InlineCost.cpp index 3ad36f16ad..246e679b21 100644 --- a/lib/Analysis/InlineCost.cpp +++ b/lib/Analysis/InlineCost.cpp @@ -266,7 +266,7 @@ bool CallAnalyzer::visitAlloca(AllocaInst &I) { // 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); |