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
c6d40741
Commit
c6d40741
authored
Nov 12, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(field_decl_cmp): Use `const void *' arguments.
From-SVN: r13130
parent
511806bc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
gcc/c-decl.c
+6
-3
No files found.
gcc/c-decl.c
View file @
c6d40741
...
...
@@ -423,7 +423,7 @@ static tree lookup_tag_reverse PROTO((tree));
static
tree
grokdeclarator
PROTO
((
tree
,
tree
,
enum
decl_context
,
int
));
static
tree
grokparms
PROTO
((
tree
,
int
));
static
int
field_decl_cmp
PROTO
((
tree
*
,
tree
*
));
static
int
field_decl_cmp
PROTO
((
const
GENERIC_PTR
,
const
GENERIC_PTR
));
static
void
layout_array_type
PROTO
((
tree
));
/* C-specific option variables. */
...
...
@@ -5475,9 +5475,12 @@ grokfield (filename, line, declarator, declspecs, width)
/* Function to help qsort sort FIELD_DECLs by name order. */
static
int
field_decl_cmp
(
x
,
y
)
tree
*
x
,
*
y
;
field_decl_cmp
(
xp
,
yp
)
const
GENERIC_PTR
xp
;
const
GENERIC_PTR
yp
;
{
tree
*
x
=
(
tree
*
)
xp
,
*
y
=
(
tree
*
)
yp
;
if
(
DECL_NAME
(
*
x
)
==
DECL_NAME
(
*
y
))
return
0
;
if
(
DECL_NAME
(
*
x
)
==
NULL
)
...
...
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