diff options
author | James Henderson <jh7370@my.bristol.ac.uk> | 2020-01-06 10:15:44 +0000 |
---|---|---|
committer | James Henderson <jh7370@my.bristol.ac.uk> | 2020-01-06 10:50:26 +0000 |
commit | d68904f957ae1f9b2309bdbf34258387c045ce27 (patch) | |
tree | 496a194e2caa3ef5f0fb60f2ae6cb75d360fe16d /llvm/lib/Transforms/IPO/Attributor.cpp | |
parent | 7180d9568df7d9198a75cfb5a156d9e60329794a (diff) | |
download | bcm5719-llvm-d68904f957ae1f9b2309bdbf34258387c045ce27.tar.gz bcm5719-llvm-d68904f957ae1f9b2309bdbf34258387c045ce27.zip |
[NFC] Fix trivial typos in comments
Reviewed By: jhenderson
Differential Revision: https://reviews.llvm.org/D72143
Patch by Kazuaki Ishizaki.
Diffstat (limited to 'llvm/lib/Transforms/IPO/Attributor.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/Attributor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/IPO/Attributor.cpp b/llvm/lib/Transforms/IPO/Attributor.cpp index ef52775c759..13fcf6aa724 100644 --- a/llvm/lib/Transforms/IPO/Attributor.cpp +++ b/llvm/lib/Transforms/IPO/Attributor.cpp @@ -154,7 +154,7 @@ static cl::opt<bool> DisableAttributor( static cl::opt<bool> AnnotateDeclarationCallSites( "attributor-annotate-decl-cs", cl::Hidden, - cl::desc("Annoate call sites of function declarations."), cl::init(false)); + cl::desc("Annotate call sites of function declarations."), cl::init(false)); static cl::opt<bool> ManifestInternal( "attributor-manifest-internal", cl::Hidden, @@ -3544,7 +3544,7 @@ struct AAAlignImpl : AAAlign { if (SI->getPointerOperand() == &AnchorVal) if (SI->getAlignment() < getAssumedAlign()) { STATS_DECLTRACK(AAAlign, Store, - "Number of times alignemnt added to a store"); + "Number of times alignment added to a store"); SI->setAlignment(Align(getAssumedAlign())); Changed = ChangeStatus::CHANGED; } @@ -3553,7 +3553,7 @@ struct AAAlignImpl : AAAlign { if (LI->getAlignment() < getAssumedAlign()) { LI->setAlignment(Align(getAssumedAlign())); STATS_DECLTRACK(AAAlign, Load, - "Number of times alignemnt added to a load"); + "Number of times alignment added to a load"); Changed = ChangeStatus::CHANGED; } } |