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
a3c11cd3
Commit
a3c11cd3
authored
Apr 06, 1993
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add prototypes.
From-SVN: r4028
parent
b82b0773
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
gcc/tree.h
+36
-0
No files found.
gcc/tree.h
View file @
a3c11cd3
...
@@ -1301,6 +1301,9 @@ extern tree decl_type_context PROTO((tree));
...
@@ -1301,6 +1301,9 @@ extern tree decl_type_context PROTO((tree));
for the function's name. */
for the function's name. */
extern
char
*
function_cannot_inline_p
PROTO
((
tree
));
extern
char
*
function_cannot_inline_p
PROTO
((
tree
));
/* Return 1 if EXPR is the real constant zero. */
extern
int
real_zerop
PROTO
((
tree
));
/* Declare commonly used variables for tree structure. */
/* Declare commonly used variables for tree structure. */
...
@@ -1458,3 +1461,36 @@ extern tree pushdecl PROTO((tree));
...
@@ -1458,3 +1461,36 @@ extern tree pushdecl PROTO((tree));
extern
tree
getdecls
PROTO
((
void
));
extern
tree
getdecls
PROTO
((
void
));
/* Function to return the chain of structure tags in the current scope level. */
/* Function to return the chain of structure tags in the current scope level. */
extern
tree
gettags
PROTO
((
void
));
extern
tree
gettags
PROTO
((
void
));
extern
tree
build_range_type
PROTO
((
tree
,
tree
,
tree
));
/* Call when starting to parse a declaration:
make expressions in the declaration last the length of the function.
Returns an argument that should be passed to resume_momentary later. */
extern
int
suspend_momentary
PROTO
((
void
));
extern
int
allocation_temporary_p
PROTO
((
void
));
/* Call when finished parsing a declaration:
restore the treatment of node-allocation that was
in effect before the suspension.
YES should be the value previously returned by suspend_momentary. */
extern
void
resume_momentary
PROTO
((
int
));
/* Called after finishing a record, union or enumeral type. */
extern
void
rest_of_type_compilation
PROTO
((
tree
,
int
));
/* Save the current set of obstacks, but don't change them. */
extern
void
push_obstacks_nochange
PROTO
((
void
));
extern
void
push_momentary
PROTO
((
void
));
extern
void
clear_momentary
PROTO
((
void
));
extern
void
pop_momentary
PROTO
((
void
));
extern
void
end_temporary_allocation
PROTO
((
void
));
/* Pop the obstack selection stack. */
extern
void
pop_obstacks
PROTO
((
void
));
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