mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-20 12:31:40 +00:00
Add a field for the compact unwind encoding.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135446 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a67dcea072
commit
88b976060a
@ -263,7 +263,7 @@ namespace llvm {
|
|||||||
struct MCDwarfFrameInfo {
|
struct MCDwarfFrameInfo {
|
||||||
MCDwarfFrameInfo() : Begin(0), End(0), Personality(0), Lsda(0),
|
MCDwarfFrameInfo() : Begin(0), End(0), Personality(0), Lsda(0),
|
||||||
Function(0), Instructions(), PersonalityEncoding(),
|
Function(0), Instructions(), PersonalityEncoding(),
|
||||||
LsdaEncoding(0) {}
|
LsdaEncoding(0), CompactUnwindEncoding(0) {}
|
||||||
MCSymbol *Begin;
|
MCSymbol *Begin;
|
||||||
MCSymbol *End;
|
MCSymbol *End;
|
||||||
const MCSymbol *Personality;
|
const MCSymbol *Personality;
|
||||||
@ -272,6 +272,7 @@ namespace llvm {
|
|||||||
std::vector<MCCFIInstruction> Instructions;
|
std::vector<MCCFIInstruction> Instructions;
|
||||||
unsigned PersonalityEncoding;
|
unsigned PersonalityEncoding;
|
||||||
unsigned LsdaEncoding;
|
unsigned LsdaEncoding;
|
||||||
|
uint32_t CompactUnwindEncoding;
|
||||||
};
|
};
|
||||||
|
|
||||||
class MCDwarfFrameEmitter {
|
class MCDwarfFrameEmitter {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user