[llvm] [mlir] [ADT] Add signed and unsigned mulHi and mulLo to APInt (PR #84719)

Atousa Duprat via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 12 22:22:58 PDT 2024


================
@@ -3094,3 +3094,19 @@ void llvm::LoadIntFromMemory(APInt &IntVal, const uint8_t *Src,
     memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes);
   }
 }
+
+APInt APIntOps::mulhs(const APInt &C1, const APInt &C2) {
+  assert(C1.getBitWidth() >= C2.getBitWidth());
----------------
Atousa wrote:

Please raise a ticket for the DivisionByConstantTest. Thanks!

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


More information about the llvm-commits mailing list