diff options
-rw-r--r-- | llvm/lib/MC/WasmObjectWriter.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/MC/WasmObjectWriter.cpp b/llvm/lib/MC/WasmObjectWriter.cpp index b3f3a34a2dd..ff1ea788047 100644 --- a/llvm/lib/MC/WasmObjectWriter.cpp +++ b/llvm/lib/MC/WasmObjectWriter.cpp @@ -37,6 +37,7 @@ using namespace llvm; #define DEBUG_TYPE "mc" +#if !defined(NDEBUG) static std::string toString(wasm::WasmSymbolType type) { switch (type) { case wasm::WASM_SYMBOL_TYPE_FUNCTION: @@ -50,6 +51,7 @@ static std::string toString(wasm::WasmSymbolType type) { } llvm_unreachable("unknown symbol type"); } +#endif static std::string relocTypetoString(uint32_t type) { switch (type) { |