Emit debug info, only if at least one compile unit is seen.
authorDevang Patel <dpatel@apple.com>
Mon, 12 Jan 2009 23:09:42 +0000 (23:09 +0000)
committerDevang Patel <dpatel@apple.com>
Mon, 12 Jan 2009 23:09:42 +0000 (23:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62118 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/DwarfWriter.cpp

index acbec3c66cda8120ba92f38a503f85d6d3eb00f0..2ec07f8d8b915d2821928a7206573fe197ad3033 100644 (file)
@@ -3596,10 +3596,16 @@ public:
 
   /// SetDebugInfo - Create global DIEs and emit initial debug info sections.
   /// This is inovked by the target AsmPrinter.
-  void SetDebugInfo() {
-    // FIXME - Check if the module has debug info or not.
+  void SetDebugInfo(MachineModuleInfo *mmi) {
+
       // Create all the compile unit DIEs.
       ConstructCompileUnits();
+      
+      if (DW_CUs.empty())
+        return;
+
+      MMI = mmi;
+      shouldEmit = true;
 
       // Create DIEs for each of the externally visible global variables.
       ConstructGlobalVariableDIEs();