Add support to handle debug info attached to an instruction.
[oota-llvm.git] / lib / CodeGen / AsmPrinter / DwarfWriter.cpp
index bebf8e079975f4b4a653ab19c183bcd1445708b4..0638d35685490eb065e565b0ef68c4fb8a42678f 100644 (file)
@@ -119,3 +119,9 @@ unsigned DwarfWriter::RecordInlinedFnEnd(DISubprogram SP) {
   return DD->RecordInlinedFnEnd(SP);
 }
 
+void DwarfWriter::SetDbgScopeBeginLabels(const MachineInstr *MI, unsigned L) {
+  DD->SetDbgScopeEndLabels(MI, L);
+}
+void DwarfWriter::SetDbgScopeEndLabels(const MachineInstr *MI, unsigned L) {
+  DD->SetDbgScopeBeginLabels(MI, L);
+}