forked from OSchip/llvm-project
[Matrix] Fix -Wunused-variable in -DLLVM_ENABLE_ASSERTIONS=off build after D106457. NFC
This commit is contained in:
parent
3959c95deb
commit
3b181568db
|
@ -1141,6 +1141,7 @@ public:
|
|||
void finalizeLowering(Instruction *Inst, MatrixTy Matrix,
|
||||
IRBuilder<> &Builder) {
|
||||
auto inserted = Inst2ColumnMatrix.insert(std::make_pair(Inst, Matrix));
|
||||
(void)inserted;
|
||||
assert(inserted.second && "multiple matrix lowering mapping");
|
||||
|
||||
ToRemove.push_back(Inst);
|
||||
|
|
Loading…
Reference in New Issue