summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-08-20 17:33:44 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-08-20 17:33:44 +0000
commit1c509715e6f9335550aaf866bbdf8b1bc3df9af3 (patch)
treebd5e2d6a0ec87bb2e8ad262578fcd7f443c7f298
parente3b04a9f3b9a4e528f1939cd51aa5b1b603d98a9 (diff)
downloadbcm5719-llvm-1c509715e6f9335550aaf866bbdf8b1bc3df9af3.tar.gz
bcm5719-llvm-1c509715e6f9335550aaf866bbdf8b1bc3df9af3.zip
Remove unused field.
llvm-svn: 216086
-rw-r--r--llvm/lib/MC/MCDwarf.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/MC/MCDwarf.cpp b/llvm/lib/MC/MCDwarf.cpp
index 01ee4694df4..a592c094655 100644
--- a/llvm/lib/MC/MCDwarf.cpp
+++ b/llvm/lib/MC/MCDwarf.cpp
@@ -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();
OpenPOWER on IntegriCloud