aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Analysis/DependenceAnalysis.cpp
diff options
context:
space:
mode:
authorHiroshi Inoue <inouehrs@jp.ibm.com>2017-07-10 12:44:25 +0000
committerHiroshi Inoue <inouehrs@jp.ibm.com>2017-07-10 12:44:25 +0000
commita86c920b1ea8f5d8b429ea944fb38a21ca8cc2ed (patch)
treed885f3cb67d9009aefa29069a024ffc4f4084f1e /llvm/lib/Analysis/DependenceAnalysis.cpp
parent730f2f9bb622a4b72231628239fe607d26224a07 (diff)
downloadllvm-a86c920b1ea8f5d8b429ea944fb38a21ca8cc2ed.zip
llvm-a86c920b1ea8f5d8b429ea944fb38a21ca8cc2ed.tar.gz
llvm-a86c920b1ea8f5d8b429ea944fb38a21ca8cc2ed.tar.bz2
fix typos in comments and error messages; NFC
llvm-svn: 307533
Diffstat (limited to 'llvm/lib/Analysis/DependenceAnalysis.cpp')
-rw-r--r--llvm/lib/Analysis/DependenceAnalysis.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/DependenceAnalysis.cpp b/llvm/lib/Analysis/DependenceAnalysis.cpp
index aed51e3..34eccc0 100644
--- a/llvm/lib/Analysis/DependenceAnalysis.cpp
+++ b/llvm/lib/Analysis/DependenceAnalysis.cpp
@@ -3372,7 +3372,7 @@ DependenceInfo::depends(Instruction *Src, Instruction *Dst,
if (Delinearize && CommonLevels > 1) {
if (tryDelinearize(Src, Dst, Pair)) {
- DEBUG(dbgs() << " delinerized GEP\n");
+ DEBUG(dbgs() << " delinearized GEP\n");
Pairs = Pair.size();
}
}
@@ -3797,7 +3797,7 @@ const SCEV *DependenceInfo::getSplitIteration(const Dependence &Dep,
if (Delinearize && CommonLevels > 1) {
if (tryDelinearize(Src, Dst, Pair)) {
- DEBUG(dbgs() << " delinerized GEP\n");
+ DEBUG(dbgs() << " delinearized GEP\n");
Pairs = Pair.size();
}
}