diff options
Diffstat (limited to 'llvm/lib/MC/MCAsmInfo.cpp')
-rw-r--r-- | llvm/lib/MC/MCAsmInfo.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/MC/MCAsmInfo.cpp b/llvm/lib/MC/MCAsmInfo.cpp index dd16945f7f2..71e51e320f8 100644 --- a/llvm/lib/MC/MCAsmInfo.cpp +++ b/llvm/lib/MC/MCAsmInfo.cpp @@ -70,6 +70,10 @@ MCAsmInfo::MCAsmInfo() { MCAsmInfo::~MCAsmInfo() = default; +void MCAsmInfo::addInitialFrameState(const MCCFIInstruction &Inst) { + InitialFrameState.push_back(Inst); +} + bool MCAsmInfo::isSectionAtomizableBySymbols(const MCSection &Section) const { return false; } |