Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
6ba95bc9
Commit
6ba95bc9
authored
28 years ago
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(DWARF_VERSION): Define as 1 if not already defined.
From-SVN: r12770
parent
410bd698
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
gcc/dwarf2out.c
+4
-2
gcc/dwarfout.c
+5
-7
No files found.
gcc/dwarf2out.c
View file @
6ba95bc9
...
...
@@ -21,8 +21,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "config.h"
#if defined(DWARF_DEBUGGING_INFO) && defined(DWARF_VERSION) \
&& DWARF_VERSION == 2
#ifndef DWARF_VERSION
#define DWARF_VERSION 1
#endif
#if defined (DWARF_DEBUGGING_INFO) && (DWARF_VERSION == 2)
#include <stdio.h>
#include "dwarf2.h"
#include "tree.h"
...
...
This diff is collapsed.
Click to expand it.
gcc/dwarfout.c
View file @
6ba95bc9
...
...
@@ -21,8 +21,10 @@ Boston, MA 02111-1307, USA. */
#include "config.h"
#if defined (DWARF_DEBUGGING_INFO) && (! defined (DWARF_VERSION) \
|| DWARF_VERSION != 2)
#ifndef DWARF_VERSION
#define DWARF_VERSION 1
#endif
#if defined (DWARF_DEBUGGING_INFO) && (DWARF_VERSION != 2)
#include <stdio.h>
#include "dwarf.h"
#include "tree.h"
...
...
@@ -34,10 +36,6 @@ Boston, MA 02111-1307, USA. */
#include "output.h"
#include "defaults.h"
#ifndef DWARF_VERSION
#define DWARF_VERSION 1
#endif
/* #define NDEBUG 1 */
#include "assert.h"
...
...
@@ -5732,4 +5730,4 @@ dwarfout_finish ()
}
}
#endif
/* DWARF_DEBUGGING_INFO */
#endif
/* DWARF_DEBUGGING_INFO
&& DWARF_VERSION != 2
*/
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment