diff options
author | Eric Christopher <echristo@apple.com> | 2010-03-09 02:36:31 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-03-09 02:36:31 +0000 |
commit | ee6414cf04d680d2c49b867fc6085be79ed32a44 (patch) | |
tree | 8d86ce626a7c96595cda5eea15197ffda4adeddf /lib/CodeGen/AsmPrinter/DwarfWriter.cpp | |
parent | 19b3826d0f0e299447d0a1c47d4fb2899d32d31f (diff) |
Speculatively revert r98035. It appears to have caused a set of buildbot
failures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98039 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfWriter.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfWriter.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfWriter.cpp b/lib/CodeGen/AsmPrinter/DwarfWriter.cpp index 9fd4c44785..08e1bbce08 100644 --- a/lib/CodeGen/AsmPrinter/DwarfWriter.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfWriter.cpp @@ -73,11 +73,11 @@ void DwarfWriter::EndFunction(const MachineFunction *MF) { MMI->EndFunction(); } -/// RecordSourceLine - Register a source line with debug info. Returns the -/// unique label that was emitted and which provides correspondence to -/// the source line list. -MCSymbol *DwarfWriter::RecordSourceLine(unsigned Line, unsigned Col, - MDNode *Scope) { +/// RecordSourceLine - Records location information and associates it with a +/// label. Returns a unique label ID used to generate a label and provide +/// correspondence to the source line list. +unsigned DwarfWriter::RecordSourceLine(unsigned Line, unsigned Col, + MDNode *Scope) { return DD->recordSourceLine(Line, Col, Scope); } @@ -92,7 +92,7 @@ bool DwarfWriter::ShouldEmitDwarfDebug() const { return DD && DD->ShouldEmitDwarfDebug(); } -void DwarfWriter::BeginScope(const MachineInstr *MI, MCSymbol *L) { +void DwarfWriter::BeginScope(const MachineInstr *MI, unsigned L) { DD->beginScope(MI, L); } void DwarfWriter::EndScope(const MachineInstr *MI) { |