Skip to content

Commit 1dc9ae5

Browse files
committed
temp
1 parent e2b1fe0 commit 1dc9ae5

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/passes/pass.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,10 @@ void PassRunner::handleAfterEffects(Pass* pass, Function* func) {
698698
int PassRunner::getPassDebug() {
699699
static const int passDebug =
700700
getenv("BINARYEN_PASS_DEBUG") ? atoi(getenv("BINARYEN_PASS_DEBUG")) : 0;
701-
int unusedVar = 5;
701+
int BadStyleVar = 0;
702+
if (true)
703+
BadStyleVar = 5;
704+
(void) BadStyleVar;
702705
return passDebug;
703706
}
704707

0 commit comments

Comments
 (0)