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
417b0fa2
Commit
417b0fa2
authored
Sep 04, 1997
by
Jim Wilson
Committed by
Jim Wilson
Sep 04, 1997
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix minor bug reported by Jan Hubicka.
* toplev.c (main): Change #elif to #else/#ifdef From-SVN: r15081
parent
7053ca72
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+2
-0
gcc/toplev.c
+3
-1
No files found.
gcc/ChangeLog
View file @
417b0fa2
Thu Sep 4 11:51:43 1997 Jim Wilson <wilson@cygnus.com>
* toplev.c (main): Change #elif to #else/#ifdef
* tlink.c: Include ctype.h.
* ginclude/va-mips.h: Add _VA_MIPS_H_ENUM ifdef/define/endif.
...
...
gcc/toplev.c
View file @
417b0fa2
...
...
@@ -4179,9 +4179,11 @@ main (argc, argv, envp)
{
#ifdef DWARF2_DEBUGGING_INFO
type
=
DWARF2_DEBUG
;
#elif defined DBX_DEBUGGING_INFO
#else
#ifdef DBX_DEBUGGING_INFO
type
=
DBX_DEBUG
;
#endif
#endif
}
}
...
...
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