From 8a584bc952dc2d97243e975f1ffffc1cc95ca423 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 9 Feb 2018 22:59:01 +0000 Subject: [PATCH] [WebAssembly] Add an LLVM_FALLTHROUGH to address a warning. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@324777 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/WebAssembly/WebAssemblyFastISel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Target/WebAssembly/WebAssemblyFastISel.cpp b/lib/Target/WebAssembly/WebAssemblyFastISel.cpp index 7e284ea950f..59bf1ad2d89 100644 --- a/lib/Target/WebAssembly/WebAssemblyFastISel.cpp +++ b/lib/Target/WebAssembly/WebAssemblyFastISel.cpp @@ -1165,6 +1165,7 @@ bool WebAssemblyFastISel::selectStore(const Instruction *I) { switch (getSimpleType(Store->getValueOperand()->getType())) { case MVT::i1: VTIsi1 = true; + LLVM_FALLTHROUGH; case MVT::i8: Opc = WebAssembly::STORE8_I32; break; -- 2.11.0