diff options
| author | Tobias Grosser <grosser@fim.uni-passau.de> | 2012-04-10 18:12:19 +0000 | 
|---|---|---|
| committer | Tobias Grosser <grosser@fim.uni-passau.de> | 2012-04-10 18:12:19 +0000 | 
| commit | d654c250c4d0d39ea6ff3d7606570b54c6424214 (patch) | |
| tree | a68e1a4c77721acf7764acd7b68b83d9ae9dcfea | |
| parent | 3efc8f22bdaef85d5ce5fd62a85871d7946f88bc (diff) | |
| download | bcm5719-llvm-d654c250c4d0d39ea6ff3d7606570b54c6424214.tar.gz bcm5719-llvm-d654c250c4d0d39ea6ff3d7606570b54c6424214.zip  | |
Fix typo
Suggested by: Sebastian Pop  <sebpop@gmail.com>
llvm-svn: 154415
| -rw-r--r-- | polly/lib/Analysis/ScopDetection.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/Analysis/ScopDetection.cpp b/polly/lib/Analysis/ScopDetection.cpp index ae70a91792a..cd33646d333 100644 --- a/polly/lib/Analysis/ScopDetection.cpp +++ b/polly/lib/Analysis/ScopDetection.cpp @@ -513,7 +513,7 @@ bool ScopDetection::isValidRegion(DetectionContext &Context) const {      return false;    } -  // SCoP can not contains the entry block of the function, because we need +  // SCoP cannot contain the entry block of the function, because we need    // to insert alloca instruction there when translate scalar to array.    if (R.getEntry() == &(R.getEntry()->getParent()->getEntryBlock()))      INVALID(Other, "Region containing entry block of function is invalid!");  | 

