mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-25 15:41:05 +00:00
Fixed a (product) build error that was due to an unused variable
Details: There was a use but it was in the assert which was not exercised during product build. Reviewers: Andrew Kaylor Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D32658 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@306073 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ac12e1602f
commit
c9d5a52ac1
@ -264,8 +264,7 @@ bool X86TargetLowering::lowerInterleavedStore(StoreInst *SI,
|
||||
assert(Factor >= 2 && Factor <= getMaxSupportedInterleaveFactor() &&
|
||||
"Invalid interleave factor");
|
||||
|
||||
VectorType *VecTy = SVI->getType();
|
||||
assert(VecTy->getVectorNumElements() % Factor == 0 &&
|
||||
assert(SVI->getType()->getVectorNumElements() % Factor == 0 &&
|
||||
"Invalid interleaved store");
|
||||
|
||||
// Holds the indices of SVI that correspond to the starting index of each
|
||||
|
Loading…
x
Reference in New Issue
Block a user