1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

fix an 80-col line.

llvm-svn: 186733
This commit is contained in:
Nadav Rotem 2013-07-19 23:14:01 +00:00
parent 43e3cf61bf
commit 85fcd9dde0

View File

@ -1423,8 +1423,8 @@ void BoUpSLP::vectorizeTree() {
Type *Ty = Scalar->getType();
if (!Ty->isVoidTy()) {
for (Value::use_iterator User = Scalar->use_begin(), UE = Scalar->use_end();
User != UE; ++User) {
for (Value::use_iterator User = Scalar->use_begin(),
UE = Scalar->use_end(); User != UE; ++User) {
DEBUG(dbgs() << "SLP: \tvalidating user:" << **User << ".\n");
assert(!MustGather.count(*User) &&
"Replacing gathered value with undef");