We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 308551f commit 0008b9cCopy full SHA for 0008b9c
llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
@@ -912,6 +912,7 @@ void VPlanTransforms::truncateToMinimalBitwidths(
912
unsigned OldResSizeInBits = OldResTy->getScalarSizeInBits();
913
assert(OldResTy->isIntegerTy() && "only integer types supported");
914
assert(OldResSizeInBits > NewResSizeInBits && "Nothing to shrink?");
915
+ (void)OldResSizeInBits;
916
917
auto *NewResTy = IntegerType::get(Ctx, NewResSizeInBits);
918
0 commit comments