diff options
author | Dan Gohman <gohman@apple.com> | 2010-04-11 23:44:58 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-04-11 23:44:58 +0000 |
commit | 068b793614f71fe36ab95cb8d94d5413a93a1828 (patch) | |
tree | 5691db47ac7d30503de7e584882b64fa069e3d2d | |
parent | af4ab1b681546d478d4a6f4332a8f0dfbc299f5f (diff) | |
download | bcm5719-llvm-068b793614f71fe36ab95cb8d94d5413a93a1828.tar.gz bcm5719-llvm-068b793614f71fe36ab95cb8d94d5413a93a1828.zip |
Fix indentation.
llvm-svn: 101001
-rw-r--r-- | llvm/lib/Analysis/ScalarEvolution.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index 59ac988ee1a..e3159a924fc 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/lib/Analysis/ScalarEvolution.cpp @@ -2689,7 +2689,7 @@ const SCEV *ScalarEvolution::createNodeForPHI(PHINode *PN) { // If StartVal = j.start - j.stride, we can use StartVal as the // initial step of the addrec evolution. if (StartVal == getMinusSCEV(AddRec->getOperand(0), - AddRec->getOperand(1))) { + AddRec->getOperand(1))) { const SCEV *PHISCEV = getAddRecExpr(StartVal, AddRec->getOperand(1), L); |