Skip to content
This repository was archived by the owner on Feb 5, 2019. It is now read-only.

Commit 1506856

Browse files
committed
Remove unused field.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216086 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 5273295 commit 1506856

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/MC/MCDwarf.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1016,12 +1016,11 @@ static void EmitPersonality(MCStreamer &streamer, const MCSymbol &symbol,
10161016
namespace {
10171017
class FrameEmitterImpl {
10181018
int CFAOffset;
1019-
int CIENum;
10201019
bool IsEH;
10211020
const MCSymbol *SectionStart;
10221021
public:
10231022
FrameEmitterImpl(bool isEH)
1024-
: CFAOffset(0), CIENum(0), IsEH(isEH), SectionStart(nullptr) {}
1023+
: CFAOffset(0), IsEH(isEH), SectionStart(nullptr) {}
10251024

10261025
void setSectionStart(const MCSymbol *Label) { SectionStart = Label; }
10271026

@@ -1257,7 +1256,6 @@ const MCSymbol &FrameEmitterImpl::EmitCIE(MCObjectStreamer &streamer,
12571256

12581257
MCSymbol *sectionStart = context.CreateTempSymbol();
12591258
streamer.EmitLabel(sectionStart);
1260-
CIENum++;
12611259

12621260
MCSymbol *sectionEnd = context.CreateTempSymbol();
12631261

0 commit comments

Comments
 (0)