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
250333d0
Commit
250333d0
authored
Nov 20, 2000
by
Kaveh R. Ghazi
Committed by
Kaveh Ghazi
Nov 20, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gansidecl.h (const): Check __STDC__ before undef'ing `const'.
From-SVN: r37590
parent
1d7ff272
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
+7
-1
gcc/ChangeLog
+4
-0
gcc/gansidecl.h
+3
-1
No files found.
gcc/ChangeLog
View file @
250333d0
2000-11-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gansidecl.h (const): Check __STDC__ before undef'ing `const'.
2000-11-20 Joseph S. Myers <jsm28@cam.ac.uk>
2000-11-20 Joseph S. Myers <jsm28@cam.ac.uk>
* c-typeck.c (build_conditional_expr): When merging type
* c-typeck.c (build_conditional_expr): When merging type
...
...
gcc/gansidecl.h
View file @
250333d0
...
@@ -35,7 +35,9 @@ Boston, MA 02111-1307, USA. */
...
@@ -35,7 +35,9 @@ Boston, MA 02111-1307, USA. */
gcc header files in case they use these keywords. Otherwise
gcc header files in case they use these keywords. Otherwise
conflicts might occur. */
conflicts might occur. */
#if (GCC_VERSION >= 2007)
#if (GCC_VERSION >= 2007)
# undef const
# ifdef __STDC__
# undef const
# endif
# undef inline
# undef inline
# define inline __inline__
/* Modern gcc can use `__inline__' freely. */
# define inline __inline__
/* Modern gcc can use `__inline__' freely. */
# ifndef HAVE_LONG_DOUBLE
# ifndef HAVE_LONG_DOUBLE
...
...
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