Skip to content

Commit

Permalink
Remove unused variables in glow/glow/lib/IR/Instrs.cpp
Browse files Browse the repository at this point in the history
Reviewed By: palmje

Differential Revision: D54378368
  • Loading branch information
r-barnes authored and facebook-github-bot committed Mar 20, 2024
1 parent ddfbc1f commit e7d36dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/IR/Instrs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void TensorViewInst::verify() const {
}

void AllocActivationInst::verify() const {
unsigned numDealloc = 0;
[[maybe_unused]] unsigned numDealloc = 0;
for (const Use &U : getUsers()) {
numDealloc += isa<DeallocActivationInst>(U.get());
}
Expand Down

0 comments on commit e7d36dd

Please sign in to comment.