summaryrefslogtreecommitdiff
path: root/llvm/lib/Target/WebAssembly/InstPrinter
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/Target/WebAssembly/InstPrinter')
-rw-r--r--llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp23
-rw-r--r--llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h2
2 files changed, 9 insertions, 16 deletions
diff --git a/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp b/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
index 045d4fb4fd6..b7b8c4fe039 100644
--- a/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
+++ b/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
@@ -235,26 +235,19 @@ void WebAssemblyInstPrinter::printWebAssemblySignatureOperand(const MCInst *MI,
}
}
-const char *llvm::WebAssembly::TypeToString(MVT Ty) {
- switch (Ty.SimpleTy) {
- case MVT::i32:
+const char *llvm::WebAssembly::TypeToString(wasm::ValType Ty) {
+ switch (Ty) {
+ case wasm::ValType::I32:
return "i32";
- case MVT::i64:
+ case wasm::ValType::I64:
return "i64";
- case MVT::f32:
+ case wasm::ValType::F32:
return "f32";
- case MVT::f64:
+ case wasm::ValType::F64:
return "f64";
- case MVT::v16i8:
- case MVT::v8i16:
- case MVT::v4i32:
- case MVT::v2i64:
- case MVT::v4f32:
- case MVT::v2f64:
+ case wasm::ValType::V128:
return "v128";
- case MVT::ExceptRef:
+ case wasm::ValType::EXCEPT_REF:
return "except_ref";
- default:
- llvm_unreachable("unsupported type");
}
}
diff --git a/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h b/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
index 2bb6dcea9e0..18023328b38 100644
--- a/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
+++ b/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
@@ -50,7 +50,7 @@ public:
namespace WebAssembly {
-const char *TypeToString(MVT Ty);
+const char *TypeToString(wasm::ValType Ty);
} // end namespace WebAssembly