mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-08 15:24:21 +00:00
Add a method I forgot in the last commit. Don't worry, this one passed
self-host :). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131421 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -463,6 +463,7 @@ namespace llvm {
|
|||||||
virtual void EmitWin64EHAllocStack(int64_t Size);
|
virtual void EmitWin64EHAllocStack(int64_t Size);
|
||||||
virtual void EmitWin64EHSaveReg(int64_t Register, int64_t Offset);
|
virtual void EmitWin64EHSaveReg(int64_t Register, int64_t Offset);
|
||||||
virtual void EmitWin64EHPushFrame(bool Code);
|
virtual void EmitWin64EHPushFrame(bool Code);
|
||||||
|
virtual void EmitWin64EHEndProlog(void);
|
||||||
|
|
||||||
/// EmitInstruction - Emit the given @p Instruction into the current
|
/// EmitInstruction - Emit the given @p Instruction into the current
|
||||||
/// section.
|
/// section.
|
||||||
|
@ -346,6 +346,12 @@ void MCStreamer::EmitWin64EHPushFrame(bool Code)
|
|||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MCStreamer::EmitWin64EHEndProlog(void)
|
||||||
|
{
|
||||||
|
errs() << "Not implemented yet\n";
|
||||||
|
abort();
|
||||||
|
}
|
||||||
|
|
||||||
void MCStreamer::EmitFnStart() {
|
void MCStreamer::EmitFnStart() {
|
||||||
errs() << "Not implemented yet\n";
|
errs() << "Not implemented yet\n";
|
||||||
abort();
|
abort();
|
||||||
|
Reference in New Issue
Block a user