mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +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 {
|
||||
MCDwarfFrameInfo() : Begin(0), End(0), Personality(0), Lsda(0),
|
||||
Function(0), Instructions(), PersonalityEncoding(),
|
||||
LsdaEncoding(0) {}
|
||||
LsdaEncoding(0), CompactUnwindEncoding(0) {}
|
||||
MCSymbol *Begin;
|
||||
MCSymbol *End;
|
||||
const MCSymbol *Personality;
|
||||
@ -272,6 +272,7 @@ namespace llvm {
|
||||
std::vector<MCCFIInstruction> Instructions;
|
||||
unsigned PersonalityEncoding;
|
||||
unsigned LsdaEncoding;
|
||||
uint32_t CompactUnwindEncoding;
|
||||
};
|
||||
|
||||
class MCDwarfFrameEmitter {
|
||||
|
Loading…
Reference in New Issue
Block a user