summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/include/llvm/Object/Wasm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Object/Wasm.h b/llvm/include/llvm/Object/Wasm.h
index 1b2c3f30965..b65c16ffda4 100644
--- a/llvm/include/llvm/Object/Wasm.h
+++ b/llvm/include/llvm/Object/Wasm.h
@@ -89,7 +89,7 @@ public:
}
void print(raw_ostream &Out) const {
- Out << "Name=" << Info.Name << ", Kind=" << Info.Kind
+ Out << "Name=" << Info.Name << ", Kind=" << int(Info.Kind)
<< ", Flags=" << Info.Flags;
if (!isTypeData()) {
Out << ", ElemIndex=" << Info.ElementIndex;
OpenPOWER on IntegriCloud