[llvm] [TTI] Use TypeSize in isLoadFromStackSlot and isStoreToStackSlot [nfc] (PR #132244)

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 20 09:15:26 PDT 2025


================
@@ -293,8 +294,8 @@ class TargetInstrInfo : public MCInstrInfo {
   /// what the load does.
   virtual Register isLoadFromStackSlot(const MachineInstr &MI,
                                        int &FrameIndex,
-                                       unsigned &MemBytes) const {
-    MemBytes = 0;
+                                       TypeSize &MemBytes) const {
+    MemBytes = TypeSize::getFixed(0);
----------------
topperc wrote:

Maybe `TypeSize::getZero()` instead?

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


More information about the llvm-commits mailing list