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 | 1a4cc6cc9fb3c5a51bae173acf6dab3285c321da (patch) | |
tree | fd05d6af5b9d818fa1ddfe01399dd912f7b81c9c /llvm/lib/Analysis/InlineCost.cpp | |
parent | a88a0faaa3449f2a20cb3d661b4405dbcc9fe3b2 (diff) | |
download | bcm5719-llvm-1a4cc6cc9fb3c5a51bae173acf6dab3285c321da.tar.gz bcm5719-llvm-1a4cc6cc9fb3c5a51bae173acf6dab3285c321da.zip |
Fix a typo reported in IRC by someone reviewing this code.
llvm-svn: 153815
Diffstat (limited to 'llvm/lib/Analysis/InlineCost.cpp')
-rw-r--r-- | llvm/lib/Analysis/InlineCost.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/InlineCost.cpp b/llvm/lib/Analysis/InlineCost.cpp index 3ad36f16ad9..246e679b21d 100644 --- a/llvm/lib/Analysis/InlineCost.cpp +++ b/llvm/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); |