mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-29 10:32:47 +00:00
Fix compilation errors with VS 2005, patch contributed by Aaron Gray.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20232 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d3f03e4b50
commit
1fb623e4ed
@ -24,7 +24,10 @@ using namespace llvm;
|
|||||||
// This method adjusts a stack offset to meet alignment rules of target.
|
// This method adjusts a stack offset to meet alignment rules of target.
|
||||||
int
|
int
|
||||||
TargetFrameInfo::adjustAlignment(int unalignedOffset, bool growUp,
|
TargetFrameInfo::adjustAlignment(int unalignedOffset, bool growUp,
|
||||||
unsigned align) const { abort(); }
|
unsigned align) const {
|
||||||
|
abort();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
// These methods compute offsets using the frame contents for a particular
|
// These methods compute offsets using the frame contents for a particular
|
||||||
// function. The frame contents are obtained from the MachineFunction object
|
// function. The frame contents are obtained from the MachineFunction object
|
||||||
@ -33,25 +36,42 @@ TargetFrameInfo::adjustAlignment(int unalignedOffset, bool growUp,
|
|||||||
//
|
//
|
||||||
int
|
int
|
||||||
TargetFrameInfo::getIncomingArgOffset(MachineFunction& mcInfo, unsigned argNum)
|
TargetFrameInfo::getIncomingArgOffset(MachineFunction& mcInfo, unsigned argNum)
|
||||||
const{ abort(); }
|
const {
|
||||||
|
abort();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
TargetFrameInfo::getOutgoingArgOffset(MachineFunction& mcInfo,
|
TargetFrameInfo::getOutgoingArgOffset(MachineFunction& mcInfo,
|
||||||
unsigned argNum) const { abort(); }
|
unsigned argNum) const {
|
||||||
|
abort();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
TargetFrameInfo::getFirstAutomaticVarOffset(MachineFunction& mcInfo,
|
TargetFrameInfo::getFirstAutomaticVarOffset(MachineFunction& mcInfo,
|
||||||
bool& growUp) const { abort(); }
|
bool& growUp) const {
|
||||||
|
abort();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
TargetFrameInfo::getRegSpillAreaOffset(MachineFunction& mcInfo, bool& growUp)
|
TargetFrameInfo::getRegSpillAreaOffset(MachineFunction& mcInfo, bool& growUp)
|
||||||
const { abort(); }
|
const {
|
||||||
|
abort();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
TargetFrameInfo::getTmpAreaOffset(MachineFunction& mcInfo, bool& growUp) const
|
TargetFrameInfo::getTmpAreaOffset(MachineFunction& mcInfo, bool& growUp) const {
|
||||||
{ abort(); }
|
abort();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
TargetFrameInfo::getDynamicAreaOffset(MachineFunction& mcInfo, bool& growUp)
|
TargetFrameInfo::getDynamicAreaOffset(MachineFunction& mcInfo, bool& growUp)
|
||||||
const { abort(); }
|
const {
|
||||||
|
abort();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user