mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-07 01:38:26 +00:00
Fix wrong frame pointer save offset in the 64-bit PowerPC SVR4 ABI.
Patch contributed by Ken Werner of IBM! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91681 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3a84dae654
commit
cfcb7997ad
@ -50,7 +50,7 @@ public:
|
||||
return isPPC64 ? -8U : -4U;
|
||||
|
||||
// SVR4 ABI: First slot in the general register save area.
|
||||
return -4U;
|
||||
return isPPC64 ? -8U : -4U;
|
||||
}
|
||||
|
||||
/// getLinkageSize - Return the size of the PowerPC ABI linkage area.
|
||||
|
Loading…
x
Reference in New Issue
Block a user