mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
ARM: Use __STACK_LIMIT symbol for segmented stacks
We cannot use STACK_LIMIT, as it is not reserved for the compiler by the C spec. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205516 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c8ce9677e6
commit
b8c20fdb2b
@ -1783,7 +1783,7 @@ void ARMFrameLowering::adjustForSegmentedStacks(MachineFunction &MF) const {
|
||||
if (Thumb && ST->isThumb1Only()) {
|
||||
unsigned PCLabelId = ARMFI->createPICLabelUId();
|
||||
ARMConstantPoolValue *NewCPV = ARMConstantPoolSymbol::Create(
|
||||
MF.getFunction()->getContext(), "STACK_LIMIT", PCLabelId, 0);
|
||||
MF.getFunction()->getContext(), "__STACK_LIMIT", PCLabelId, 0);
|
||||
MachineConstantPool *MCP = MF.getConstantPool();
|
||||
unsigned CPI = MCP->getConstantPoolIndex(NewCPV, MF.getAlignment());
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user