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
bdea67fa
Commit
bdea67fa
authored
31 years ago
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(PVPROTO): New macro.
From-SVN: r6743
parent
7d49f92a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
gcc/rtl.h
+5
-2
gcc/tree.h
+5
-3
No files found.
gcc/rtl.h
View file @
bdea67fa
...
...
@@ -153,9 +153,11 @@ typedef struct rtx_def
#ifndef VPROTO
#ifdef __STDC__
#define PVPROTO(ARGS) ARGS
#define VPROTO(ARGS) ARGS
#define VA_START(va_list,var) va_start(va_list,var)
#else
#define PVPROTO(ARGS) ()
#define VPROTO(ARGS) (va_alist) va_dcl
#define VA_START(va_list,var) va_start(va_list)
#endif
...
...
@@ -655,8 +657,9 @@ extern rtx plus_constant_for_output_wide PROTO((rtx, HOST_WIDE_INT));
extern
rtx
bc_gen_rtx
();
extern
rtx
gen_rtx
PROTO
((
enum
rtx_code
,
enum
machine_mode
,
...));
extern
rtvec
gen_rtvec
PROTO
((
int
,
...));
extern
rtx
gen_rtx
PVPROTO
((
enum
rtx_code
,
enum
machine_mode
,
...));
extern
rtvec
gen_rtvec
PVPROTO
((
int
,
...));
#ifdef BUFSIZ
/* stdio.h has been included */
extern
rtx
read_rtx
PROTO
((
FILE
*
));
...
...
This diff is collapsed.
Click to expand it.
gcc/tree.h
View file @
bdea67fa
...
...
@@ -999,9 +999,11 @@ union tree_node
#ifndef VPROTO
#ifdef __STDC__
#define PVPROTO(ARGS) ARGS
#define VPROTO(ARGS) ARGS
#define VA_START(va_list,var) va_start(va_list,var)
#else
#define PVPROTO(ARGS) ()
#define VPROTO(ARGS) (va_alist) va_dcl
#define VA_START(va_list,var) va_start(va_list)
#endif
...
...
@@ -1082,9 +1084,9 @@ extern tree get_identifier PROTO((char *));
#define build_int_2(LO,HI) \
build_int_2_wide ((HOST_WIDE_INT) (LO), (HOST_WIDE_INT) (HI))
extern
tree
build
PROTO
((
enum
tree_code
,
tree
,
...));
extern
tree
build_nt
PROTO
((
enum
tree_code
,
...));
extern
tree
build_parse_node
PROTO
((
enum
tree_code
,
...));
extern
tree
build
P
VP
ROTO
((
enum
tree_code
,
tree
,
...));
extern
tree
build_nt
P
VP
ROTO
((
enum
tree_code
,
...));
extern
tree
build_parse_node
P
VP
ROTO
((
enum
tree_code
,
...));
extern
tree
build_int_2_wide
PROTO
((
HOST_WIDE_INT
,
HOST_WIDE_INT
));
extern
tree
build_real
PROTO
((
tree
,
REAL_VALUE_TYPE
));
...
...
This diff is collapsed.
Click to expand it.
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