Add check for debug presence.
authorJim Laskey <jlaskey@mac.com>
Wed, 4 Jan 2006 14:30:12 +0000 (14:30 +0000)
committerJim Laskey <jlaskey@mac.com>
Wed, 4 Jan 2006 14:30:12 +0000 (14:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25095 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/DwarfWriter.cpp

index 2fc65e6f9567a026c8fa9f7c9db643ee8da84a5a..c62cf8996f70e7e7fd3f1c749decebd9cc4cc8c2 100644 (file)
@@ -70,6 +70,7 @@ void DwarfWriter::EmitSLEB128Bytes(int Value, std::string Comment) {
 /// BeginModule - Emit all dwarf sections that should come prior to the content.
 ///
 void DwarfWriter::BeginModule() {
+  if (!DebugInfo.hasInfo()) return;
   EmitComment("Dwarf Begin Module");
   
   // define base addresses for dwarf sections
@@ -84,6 +85,7 @@ void DwarfWriter::BeginModule() {
 /// EndModule - Emit all dwarf sections that should come after the content.
 ///
 void DwarfWriter::EndModule() {
+  if (!DebugInfo.hasInfo()) return;
   EmitComment("Dwarf End Module");
   // Print out dwarf file info
   std::vector<std::string> Sources = DebugInfo.getSourceFiles();
@@ -96,12 +98,14 @@ void DwarfWriter::EndModule() {
 /// BeginFunction - Emit pre-function debug information.
 ///
 void DwarfWriter::BeginFunction() {
+  if (!DebugInfo.hasInfo()) return;
   EmitComment("Dwarf Begin Function");
 }
 
 /// EndFunction - Emit post-function debug information.
 ///
 void DwarfWriter::EndFunction() {
+  if (!DebugInfo.hasInfo()) return;
   EmitComment("Dwarf End Function");
 }