commit | 9bb494caf43bcf8286511e8d0fb9d079cf708d9a | [log] [tgz] |
---|---|---|
author | Derek Schuff <dschuff@google.com> | Thu Apr 06 23:52:01 2017 +0000 |
committer | Derek Schuff <dschuff@google.com> | Thu Apr 06 23:52:01 2017 +0000 |
tree | 6126aadad739bdbc830d8f3e4773085a0f1fde4c | |
parent | 8ac1fa16b2c8d1ece353a1c5e84604c7de31daaf [diff] [blame] |
[WebAssembly] Fix -Wcovered-switch-default warning llvm-svn: 299736
diff --git a/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp b/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp index 26461e2..f31dde0 100644 --- a/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp +++ b/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
@@ -253,7 +253,6 @@ return "f32"; case wasm::ValType::F64: return "f64"; - default: - llvm_unreachable("unsupported type"); } + llvm_unreachable("unsupported type"); }