diff options
| author | Xavier ASUS <xavi92psx@gmail.com> | 2019-10-25 02:19:30 +0200 |
|---|---|---|
| committer | Xavier ASUS <xavi92psx@gmail.com> | 2019-10-25 02:19:30 +0200 |
| commit | 46783fd76b89ff4e444f4e62e9ce42180fe24eda (patch) | |
| tree | 060a1cfd1e7aeb22097d039540742f987f1e7120 /src/SDCCdwarf2.c | |
| parent | 4de313f145d3c9bde748306f48443aadef6cf774 (diff) | |
| download | sdcc-gas-46783fd76b89ff4e444f4e62e9ce42180fe24eda.tar.gz | |
Removed unneded "== ." directives for --gas
Diffstat (limited to 'src/SDCCdwarf2.c')
| -rw-r--r-- | src/SDCCdwarf2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SDCCdwarf2.c b/src/SDCCdwarf2.c index 25eb4bb..e038805 100644 --- a/src/SDCCdwarf2.c +++ b/src/SDCCdwarf2.c @@ -1537,7 +1537,7 @@ dwWritePubnames (void) dwWriteHalf (NULL, 2, NULL); /* DWARF version */ dwWriteWord (LOCAL_LABEL ("Ldebug_info_start")"-4", 0, NULL); - dwWriteWordDelta ("4+"LOCAL_LABEL ("Ldebug_info_end"), LOCAL_LABEL ("Ldebug_info_start")); + dwWriteWordDelta ("4+" LOCAL_LABEL ("Ldebug_info_end"), LOCAL_LABEL ("Ldebug_info_start")); if (dwRootTag && dwRootTag->firstChild) { @@ -2925,7 +2925,7 @@ dwWriteLabel (symbol *sym, const iCode *ic) if (sym->isitmp) return 1; - sprintf (debugSym, "L%s$%s$%s", dwModuleName, currFunc->name, sym->name); + sprintf (debugSym, LOCAL_LABEL ("L") "%s$%s$%s", dwModuleName, currFunc->name, sym->name); emitDebuggerSymbol (debugSym); tp = dwNewTag (DW_TAG_label); |
