diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2024-07-30 14:27:43 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2024-10-23 18:26:26 +0000 |
commit | 36b606ae6aa4b24061096ba18582e0a08ccd5dba (patch) | |
tree | cf4fe3cf493461d93efbefc53852f456ce574608 /contrib/llvm-project/llvm/lib/Target/MSP430 | |
parent | 0fca6ea1d4eea4c934cfff25ac9ee8ad6fe95583 (diff) | |
parent | c76260f306a7e51ef52dc75c6031e51e1e0862d7 (diff) |
Diffstat (limited to 'contrib/llvm-project/llvm/lib/Target/MSP430')
-rw-r--r-- | contrib/llvm-project/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp b/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp index f4d703ebeeab..d0dc6dd146ef 100644 --- a/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp +++ b/contrib/llvm-project/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp @@ -293,7 +293,7 @@ void MSP430FrameLowering::emitEpilogue(MachineFunction &MF, if (!hasFP(MF)) { MBBI = FirstCSPop; - int64_t Offset = -CSSize - 2; + int64_t Offset = -(int64_t)CSSize - 2; // Mark callee-saved pop instruction. // Define the current CFA rule to use the provided offset. while (MBBI != MBB.end()) { |