mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-03 14:08:57 +00:00
Remove unused variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129639 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
571c0e95fa
commit
e5060984aa
@ -113,16 +113,13 @@ void DwarfCFIException::BeginFunction(const MachineFunction *MF) {
|
||||
switch (PerEncoding & 0x70) {
|
||||
default:
|
||||
report_fatal_error("We do not support this DWARF encoding yet!");
|
||||
case dwarf::DW_EH_PE_absptr: {
|
||||
case dwarf::DW_EH_PE_absptr:
|
||||
Sym = Asm->Mang->getSymbol(Per);
|
||||
break;
|
||||
}
|
||||
case dwarf::DW_EH_PE_pcrel: {
|
||||
MCContext &Context = Asm->OutStreamer.getContext();
|
||||
case dwarf::DW_EH_PE_pcrel:
|
||||
Sym = TLOF.getPersonalityPICSymbol(Per->getName());
|
||||
break;
|
||||
}
|
||||
}
|
||||
Asm->OutStreamer.EmitCFIPersonality(Sym, PerEncoding);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user