[llvm] [WebAssembly] Add more lowerings for wide-arithmetic (PR #132430)

Jorge Gorbe Moya via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 31 12:07:14 PDT 2025


================
@@ -1109,6 +1110,18 @@ void WebAssemblyTargetLowering::computeKnownBitsForTargetNode(
     }
     }
   }
+
+  // For 128-bit addition if the upper bits are all zero then it's known that
+  // the upper bits of the result will have all bits guaranteed zero except the
+  // first.
+  case WebAssemblyISD::I64_ADD128:
----------------
slackito wrote:

This case triggers an "unannotated fall-through between switch labels" warning. Is it supposed to fall through from the previous case or is the previous case supposed to break?

https://github.com/llvm/llvm-project/pull/132430


More information about the llvm-commits mailing list