mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
Emit debug info, only if at least one compile unit is seen.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62118 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
72b663575f
commit
3f7833a273
@ -3596,11 +3596,17 @@ 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();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user