mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
Add a method I forgot in the last commit. Don't worry, this one passed
self-host :). llvm-svn: 131421
This commit is contained in:
parent
cb60e2293f
commit
173b0d324a
@ -463,6 +463,7 @@ namespace llvm {
|
||||
virtual void EmitWin64EHAllocStack(int64_t Size);
|
||||
virtual void EmitWin64EHSaveReg(int64_t Register, int64_t Offset);
|
||||
virtual void EmitWin64EHPushFrame(bool Code);
|
||||
virtual void EmitWin64EHEndProlog(void);
|
||||
|
||||
/// EmitInstruction - Emit the given @p Instruction into the current
|
||||
/// section.
|
||||
|
@ -346,6 +346,12 @@ void MCStreamer::EmitWin64EHPushFrame(bool Code)
|
||||
abort();
|
||||
}
|
||||
|
||||
void MCStreamer::EmitWin64EHEndProlog(void)
|
||||
{
|
||||
errs() << "Not implemented yet\n";
|
||||
abort();
|
||||
}
|
||||
|
||||
void MCStreamer::EmitFnStart() {
|
||||
errs() << "Not implemented yet\n";
|
||||
abort();
|
||||
|
Loading…
Reference in New Issue
Block a user