mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-04 02:24:29 +00:00
- Rename stackprotector_{prologue,epilogue} to stackprotector_{create,check}.
- Get rid of "HasStackProtector" in MachineFrameInfo. - Modify intrinsics to tell which are doing what with memory. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58799 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -408,7 +408,7 @@ void PEI::calculateFrameObjectOffsets(MachineFunction &Fn) {
|
||||
|
||||
// Make sure that the stack protector comes before the local variables on the
|
||||
// stack.
|
||||
if (FFI->hasStackProtector()) {
|
||||
if (FFI->getStackProtectorIndex() >= 0) {
|
||||
int FI = FFI->getStackProtectorIndex();
|
||||
|
||||
// If stack grows down, we need to add size of find the lowest
|
||||
|
Reference in New Issue
Block a user