mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +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:
parent
5273295751
commit
1506856c3b
@ -1016,12 +1016,11 @@ static void EmitPersonality(MCStreamer &streamer, const MCSymbol &symbol,
|
||||
namespace {
|
||||
class FrameEmitterImpl {
|
||||
int CFAOffset;
|
||||
int CIENum;
|
||||
bool IsEH;
|
||||
const MCSymbol *SectionStart;
|
||||
public:
|
||||
FrameEmitterImpl(bool isEH)
|
||||
: CFAOffset(0), CIENum(0), IsEH(isEH), SectionStart(nullptr) {}
|
||||
: CFAOffset(0), IsEH(isEH), SectionStart(nullptr) {}
|
||||
|
||||
void setSectionStart(const MCSymbol *Label) { SectionStart = Label; }
|
||||
|
||||
@ -1257,7 +1256,6 @@ const MCSymbol &FrameEmitterImpl::EmitCIE(MCObjectStreamer &streamer,
|
||||
|
||||
MCSymbol *sectionStart = context.CreateTempSymbol();
|
||||
streamer.EmitLabel(sectionStart);
|
||||
CIENum++;
|
||||
|
||||
MCSymbol *sectionEnd = context.CreateTempSymbol();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user