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
2109bb54
Commit
2109bb54
authored
Mar 16, 1994
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't declare last parameter of stdarg function to be register.
From-SVN: r6802
parent
608f0dd2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
gcc/genattrtab.c
+1
-1
gcc/tree.c
+2
-2
No files found.
gcc/genattrtab.c
View file @
2109bb54
...
...
@@ -726,7 +726,7 @@ attr_rtx VPROTO((enum rtx_code code, ...))
/*VARARGS2*/
static
char
*
attr_printf
VPROTO
((
register
int
len
,
register
char
*
fmt
,
...))
attr_printf
VPROTO
((
register
int
len
,
char
*
fmt
,
...))
{
#ifndef __STDC__
register
int
len
;
...
...
gcc/tree.c
View file @
2109bb54
...
...
@@ -2572,7 +2572,7 @@ build1 (code, type, node)
or even garbage if their values do not matter. */
tree
build_nt
VPROTO
((
register
enum
tree_code
code
,
...))
build_nt
VPROTO
((
enum
tree_code
code
,
...))
{
#ifndef __STDC__
enum
tree_code
code
;
...
...
@@ -2602,7 +2602,7 @@ build_nt VPROTO((register enum tree_code code, ...))
on the temp_decl_obstack, regardless. */
tree
build_parse_node
VPROTO
((
register
enum
tree_code
code
,
...))
build_parse_node
VPROTO
((
enum
tree_code
code
,
...))
{
#ifndef __STDC__
enum
tree_code
code
;
...
...
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