diff options
-rw-r--r-- | src/passes/pass.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/passes/pass.cpp b/src/passes/pass.cpp index d80b0f56e..65d8c438d 100644 --- a/src/passes/pass.cpp +++ b/src/passes/pass.cpp @@ -698,10 +698,10 @@ void PassRunner::handleAfterEffects(Pass* pass, Function* func) { int PassRunner::getPassDebug() { static const int passDebug = getenv("BINARYEN_PASS_DEBUG") ? atoi(getenv("BINARYEN_PASS_DEBUG")) : 0; - int BadStyleVar = 0; + int a = 0; if (true) - BadStyleVar = 5; - (void) BadStyleVar; + a = 5; + (void)a; return passDebug; } |