Skip to content

Commit adafb27

Browse files
committed
Add a missing semicolon.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@274794 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 9a468ef commit adafb27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Transforms/Vectorize/LoadStoreVectorizer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ bool Vectorizer::isVectorizable(ArrayRef<Value *> Chain,
453453
" Aliasing instruction and pointer:\n"
454454
<< *V << " aliases " << *Ptr0 << '\n'
455455
<< " Aliased instruction and pointer:\n"
456-
<< *VV << " aliases " << *Ptr1 << '\n'
456+
<< *VV << " aliases " << *Ptr1 << '\n';
457457
});
458458

459459
return false;

0 commit comments

Comments
 (0)