From 53de5ed9ac251301c33125bb58137d0a992d984b Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Thu, 30 Jun 2022 14:24:56 -0700 Subject: Fix more no-assertions warnings (#4765) --- src/cfg/cfg-traversal.h | 1 + src/tools/wasm-reduce.cpp | 1 + src/tools/wasm-shell.cpp | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/cfg/cfg-traversal.h b/src/cfg/cfg-traversal.h index 478b4780e..3a15143fe 100644 --- a/src/cfg/cfg-traversal.h +++ b/src/cfg/cfg-traversal.h @@ -277,6 +277,7 @@ struct CFGWalker : public ControlFlowWalker { break; } } + WASM_UNUSED(found); assert(found); continue; } diff --git a/src/tools/wasm-reduce.cpp b/src/tools/wasm-reduce.cpp index 2276f66a4..a4d326426 100644 --- a/src/tools/wasm-reduce.cpp +++ b/src/tools/wasm-reduce.cpp @@ -941,6 +941,7 @@ struct Reducer // process things here, we may replace the module, so we should never again // refer to curr. assert(curr == module.get()); + WASM_UNUSED(curr); curr = nullptr; // Reduction of entire functions at a time is very effective, and we do it diff --git a/src/tools/wasm-shell.cpp b/src/tools/wasm-shell.cpp index 0de93c69e..617d56313 100644 --- a/src/tools/wasm-shell.cpp +++ b/src/tools/wasm-shell.cpp @@ -208,7 +208,7 @@ protected: std::cout << "[exception thrown: " << e << "]" << std::endl; trapped = true; } - + WASM_UNUSED(trapped); assert(trapped); } @@ -228,6 +228,7 @@ protected: std::cout << "[exception thrown: " << e << "]" << std::endl; trapped = true; } + WASM_UNUSED(trapped); assert(!trapped); std::cerr << "seen " << actual << ", expected " << expected << '\n'; if (expected != actual) { -- cgit v1.2.3