mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-18 12:25:47 +00:00
Remove unused field.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216086 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1016,12 +1016,11 @@ static void EmitPersonality(MCStreamer &streamer, const MCSymbol &symbol,
|
|||||||
namespace {
|
namespace {
|
||||||
class FrameEmitterImpl {
|
class FrameEmitterImpl {
|
||||||
int CFAOffset;
|
int CFAOffset;
|
||||||
int CIENum;
|
|
||||||
bool IsEH;
|
bool IsEH;
|
||||||
const MCSymbol *SectionStart;
|
const MCSymbol *SectionStart;
|
||||||
public:
|
public:
|
||||||
FrameEmitterImpl(bool isEH)
|
FrameEmitterImpl(bool isEH)
|
||||||
: CFAOffset(0), CIENum(0), IsEH(isEH), SectionStart(nullptr) {}
|
: CFAOffset(0), IsEH(isEH), SectionStart(nullptr) {}
|
||||||
|
|
||||||
void setSectionStart(const MCSymbol *Label) { SectionStart = Label; }
|
void setSectionStart(const MCSymbol *Label) { SectionStart = Label; }
|
||||||
|
|
||||||
@@ -1257,7 +1256,6 @@ const MCSymbol &FrameEmitterImpl::EmitCIE(MCObjectStreamer &streamer,
|
|||||||
|
|
||||||
MCSymbol *sectionStart = context.CreateTempSymbol();
|
MCSymbol *sectionStart = context.CreateTempSymbol();
|
||||||
streamer.EmitLabel(sectionStart);
|
streamer.EmitLabel(sectionStart);
|
||||||
CIENum++;
|
|
||||||
|
|
||||||
MCSymbol *sectionEnd = context.CreateTempSymbol();
|
MCSymbol *sectionEnd = context.CreateTempSymbol();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user