Skip to content

Commit

Permalink
[SVE] Remove isScalable from Bitcode
Browse files Browse the repository at this point in the history
Reviewers: efriedma, dexonsmith, tejohnson, sdesmalen

Reviewed By: efriedma

Subscribers: tschuett, hiraditya, rkruppe, psnobl, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D77695
  • Loading branch information
christetreault-llvm committed Apr 23, 2020
1 parent abe827b commit 0d9144a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
Expand Up @@ -957,8 +957,8 @@ void ModuleBitcodeWriter::writeTypeTable() {
Code = bitc::TYPE_CODE_VECTOR;
TypeVals.push_back(VT->getNumElements());
TypeVals.push_back(VE.getTypeID(VT->getElementType()));
if (VT->isScalable())
TypeVals.push_back(VT->isScalable());
if (isa<ScalableVectorType>(VT))
TypeVals.push_back(true);
break;
}
}
Expand Down

0 comments on commit 0d9144a

Please sign in to comment.