[llvm] c632466 - [WebAssembly] Add a missing `break` statement (#133783)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 31 12:58:10 PDT 2025
Author: Alex Crichton
Date: 2025-03-31T12:58:06-07:00
New Revision: c63246645eeb3fddcf86b36e815c30e8b2af6d44
URL: https://github.com/llvm/llvm-project/commit/c63246645eeb3fddcf86b36e815c30e8b2af6d44
DIFF: https://github.com/llvm/llvm-project/commit/c63246645eeb3fddcf86b36e815c30e8b2af6d44.diff
LOG: [WebAssembly] Add a missing `break` statement (#133783)
This fixes an issue introduced in #132430 where a `break;` statement was
accidentally missing causing unintended fall-through.
Added:
Modified:
llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp b/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
index 82d3b8e292e60..794db887bd073 100644
--- a/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
+++ b/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
@@ -1109,6 +1109,7 @@ void WebAssemblyTargetLowering::computeKnownBitsForTargetNode(
break;
}
}
+ break;
}
// For 128-bit addition if the upper bits are all zero then it's known that
More information about the llvm-commits
mailing list