[llvm-commits] [polly] r144903 - /polly/trunk/lib/Support/SCEVValidator.cpp
Tobias Grosser
grosser at fim.uni-passau.de
Thu Nov 17 04:56:13 PST 2011
Author: grosser
Date: Thu Nov 17 06:56:12 2011
New Revision: 144903
URL: http://llvm.org/viewvc/llvm-project?rev=144903&view=rev
Log:
SCEVValidator: Fix typo
Modified:
polly/trunk/lib/Support/SCEVValidator.cpp
Modified: polly/trunk/lib/Support/SCEVValidator.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Support/SCEVValidator.cpp?rev=144903&r1=144902&r2=144903&view=diff
==============================================================================
--- polly/trunk/lib/Support/SCEVValidator.cpp (original)
+++ polly/trunk/lib/Support/SCEVValidator.cpp Thu Nov 17 06:56:12 2011
@@ -141,7 +141,7 @@
ValidatorResult LHS = visit(Expr->getLHS());
ValidatorResult RHS = visit(Expr->getRHS());
- // We currently do not represent a unsigned devision as an affine
+ // We currently do not represent an unsigned devision as an affine
// expression. If the division is constant during Scop execution we treat it
// as a parameter, otherwise we bail out.
if (LHS.isConstant() && RHS.isConstant())
More information about the llvm-commits
mailing list