diff options
| author | Robin Morisset <morisset@google.com> | 2014-08-29 21:53:01 +0000 |
|---|---|---|
| committer | Robin Morisset <morisset@google.com> | 2014-08-29 21:53:01 +0000 |
| commit | 039781ef269c61139d902b0cf8c78096d7318d9f (patch) | |
| tree | 24631595cdf0fb8f1c20873b26bdb3d6a503d16f /llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp | |
| parent | ae08e431ddc1d981afa9a16a3e2041a6213846d8 (diff) | |
| download | bcm5719-llvm-039781ef269c61139d902b0cf8c78096d7318d9f.tar.gz bcm5719-llvm-039781ef269c61139d902b0cf8c78096d7318d9f.zip | |
Fix typos in comments, NFC
Summary: Just fixing comments, no functional change.
Test Plan: N/A
Reviewers: jfb
Subscribers: mcrosier, llvm-commits
Differential Revision: http://reviews.llvm.org/D5130
llvm-svn: 216784
Diffstat (limited to 'llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp')
| -rw-r--r-- | llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp b/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp index afe0504fb90..5a624e381ca 100644 --- a/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp +++ b/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp @@ -303,7 +303,7 @@ static AArch64_AM::ShiftExtendType getShiftTypeForNode(SDValue N) { /// \brief Determine wether it is worth to fold V into an extended register. bool AArch64DAGToDAGISel::isWorthFolding(SDValue V) const { - // it hurts if the a value is used at least twice, unless we are optimizing + // it hurts if the value is used at least twice, unless we are optimizing // for code size. if (ForCodeSize || V.hasOneUse()) return true; |

