diff options
author | Andreas Bolka <a@bolka.at> | 2009-08-07 22:55:26 +0000 |
---|---|---|
committer | Andreas Bolka <a@bolka.at> | 2009-08-07 22:55:26 +0000 |
commit | 7a5c8db6b51c6ec2816f049f43d4dbd6fb877079 (patch) | |
tree | 95bf4e38bebc692ef5cb7302421f1fbaea49ccc6 /llvm/lib/Analysis/ScalarEvolution.cpp | |
parent | d28a26dfab91a24157a07f8dc8bcf029ffa1b244 (diff) | |
download | bcm5719-llvm-7a5c8db6b51c6ec2816f049f43d4dbd6fb877079.tar.gz bcm5719-llvm-7a5c8db6b51c6ec2816f049f43d4dbd6fb877079.zip |
Fix copy-pasto.
llvm-svn: 78426
Diffstat (limited to 'llvm/lib/Analysis/ScalarEvolution.cpp')
-rw-r--r-- | llvm/lib/Analysis/ScalarEvolution.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index 03f3cd66ae2..72cb9b212fa 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/lib/Analysis/ScalarEvolution.cpp @@ -1612,8 +1612,8 @@ const SCEV *ScalarEvolution::getMulExpr(SmallVectorImpl<const SCEV *> &Ops) { return S; } -/// getUDivExpr - Get a canonical multiply expression, or something simpler if -/// possible. +/// getUDivExpr - Get a canonical unsigned division expression, or something +/// simpler if possible. const SCEV *ScalarEvolution::getUDivExpr(const SCEV *LHS, const SCEV *RHS) { assert(getEffectiveSCEVType(LHS->getType()) == |