SLPVectorizer: Fix whitespace errors

llvm-svn: 195161
This commit is contained in:
Arnold Schwaighofer 2013-11-19 22:20:18 +00:00
parent ecf81c09f5
commit 5f7c48ebff
1 changed files with 12 additions and 11 deletions

View File

@ -2001,7 +2001,8 @@ bool SLPVectorizer::tryToVectorizeList(ArrayRef<Value *> VL, BoUpSLP &R) {
if (!isPowerOf2_32(OpsWidth) || OpsWidth < 2) if (!isPowerOf2_32(OpsWidth) || OpsWidth < 2)
break; break;
DEBUG(dbgs() << "SLP: Analyzing " << OpsWidth << " operations " << "\n"); DEBUG(dbgs() << "SLP: Analyzing " << OpsWidth << " operations "
<< "\n");
ArrayRef<Value *> Ops = VL.slice(i, OpsWidth); ArrayRef<Value *> Ops = VL.slice(i, OpsWidth);
R.buildTree(Ops); R.buildTree(Ops);