Emit debug info, only if at least one compile unit is seen.

llvm-svn: 62118
This commit is contained in:
Devang Patel 2009-01-12 23:09:42 +00:00
parent 6dfeb55897
commit 243b4add9a
1 changed files with 8 additions and 2 deletions

View 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();