diff options
author | Tobias Grosser <tobias@grosser.es> | 2014-02-20 21:29:02 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2014-02-20 21:29:02 +0000 |
commit | 612c2bc0710c9c8ff5bb693722b4f814258cb80d (patch) | |
tree | 4f3b89a7e50cdb091aec641b67bfdc5371515096 | |
parent | 28cdfd3be6584da49666492ee6f2f54597a5dd2f (diff) | |
download | bcm5719-llvm-612c2bc0710c9c8ff5bb693722b4f814258cb80d.tar.gz bcm5719-llvm-612c2bc0710c9c8ff5bb693722b4f814258cb80d.zip |
Fix typo
llvm-svn: 201814
-rw-r--r-- | polly/lib/Analysis/TempScopInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/Analysis/TempScopInfo.cpp b/polly/lib/Analysis/TempScopInfo.cpp index d36502505ce..53c5a719770 100644 --- a/polly/lib/Analysis/TempScopInfo.cpp +++ b/polly/lib/Analysis/TempScopInfo.cpp @@ -138,7 +138,7 @@ bool TempScopInfo::buildScalarDependences(Instruction *Inst, Region *R) { assert(!isa<PHINode>(U) && "Non synthesizable PHINode found in a SCoP!"); // Use the def instruction as base address of the IRAccess, so that it will - // become the the name of the scalar access in the polyhedral form. + // become the name of the scalar access in the polyhedral form. IRAccess ScalarAccess(IRAccess::SCALARREAD, Inst, ZeroOffset, 1, true); AccFuncMap[UseParent].push_back(std::make_pair(ScalarAccess, U)); } |