mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
Simplify the constructor. NFC.
llvm-svn: 252243
This commit is contained in:
parent
8ce9959607
commit
9e311e9239
@ -996,14 +996,13 @@ static void EmitPersonality(MCStreamer &streamer, const MCSymbol &symbol,
|
||||
|
||||
namespace {
|
||||
class FrameEmitterImpl {
|
||||
int CFAOffset;
|
||||
int InitialCFAOffset;
|
||||
int CFAOffset = 0;
|
||||
int InitialCFAOffset = 0;
|
||||
bool IsEH;
|
||||
const MCSymbol *SectionStart;
|
||||
const MCSymbol *SectionStart = nullptr;
|
||||
|
||||
public:
|
||||
FrameEmitterImpl(bool isEH)
|
||||
: CFAOffset(0), InitialCFAOffset(0), IsEH(isEH), SectionStart(nullptr) {}
|
||||
FrameEmitterImpl(bool IsEH) : IsEH(IsEH) {}
|
||||
|
||||
void setSectionStart(const MCSymbol *Label) { SectionStart = Label; }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user