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
084087e1
Commit
084087e1
authored
Jan 17, 2003
by
Richard Henderson
Committed by
Richard Henderson
Jan 17, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gengtype.c (walk_type): Allow paramN_is.
From-SVN: r61441
parent
4a13592e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
+9
-1
gcc/ChangeLog
+4
-0
gcc/gengtype.c
+5
-1
No files found.
gcc/ChangeLog
View file @
084087e1
2003
-
01
-
17
Richard
Henderson
<
rth
@redhat
.
com
>
*
gengtype
.
c
(
walk_type
)
:
Allow
paramN_is
.
2003
-
01
-
17
Nick
Clifton
<
nickc
@redhat
.
com
>
*
config
/
i960
/
t
-
960
bare
(
i960
-
c
.
o
)
:
Add
missing
newline
escape
.
...
...
gcc/gengtype.c
View file @
084087e1
/* Process source files and output type information.
Copyright (C) 2002 Free Software Foundation, Inc.
Copyright (C) 2002
, 2003
Free Software Foundation, Inc.
This file is part of GCC.
...
...
@@ -1560,6 +1560,10 @@ walk_type (t, d)
;
else
if
(
strcmp
(
oo
->
name
,
"param_is"
)
==
0
)
;
else
if
(
strncmp
(
oo
->
name
,
"param"
,
5
)
==
0
&&
ISDIGIT
(
oo
->
name
[
5
])
&&
strcmp
(
oo
->
name
+
6
,
"_is"
)
==
0
)
;
else
if
(
strcmp
(
oo
->
name
,
"chain_next"
)
==
0
)
;
else
if
(
strcmp
(
oo
->
name
,
"chain_prev"
)
==
0
)
...
...
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