1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

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 4379343f92
commit 68ef0f4ecb

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