mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Don't assert on invalid loop vectorization hint.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190450 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
add560eee4
commit
8e5eb2b160
@ -864,15 +864,18 @@ private:
|
||||
unsigned Val = C->getZExtValue();
|
||||
|
||||
if (Hint == "width") {
|
||||
assert(isPowerOf2_32(Val) && Val <= MaxVectorWidth &&
|
||||
"Invalid width metadata");
|
||||
Width = Val;
|
||||
if (isPowerOf2_32(Val) && Val <= MaxVectorWidth)
|
||||
Width = Val;
|
||||
else
|
||||
DEBUG(dbgs() << "LV: ignoring invalid width hint metadata");
|
||||
} else if (Hint == "unroll") {
|
||||
assert(isPowerOf2_32(Val) && Val <= MaxUnrollFactor &&
|
||||
"Invalid unroll metadata");
|
||||
Unroll = Val;
|
||||
} else
|
||||
if (isPowerOf2_32(Val) && Val <= MaxUnrollFactor)
|
||||
Unroll = Val;
|
||||
else
|
||||
DEBUG(dbgs() << "LV: ignoring invalid unroll hint metadata");
|
||||
} else {
|
||||
DEBUG(dbgs() << "LV: ignoring unknown hint " << Hint);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user