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
f0632762
Commit
f0632762
authored
Oct 14, 1997
by
Jason Merrill
Committed by
Jason Merrill
Oct 14, 1997
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree.c (expr_tree_cons, build_expr_list, expralloc): New fns.
From-SVN: r15898
parent
378ec56d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
0 deletions
+42
-0
gcc/ChangeLog
+4
-0
gcc/tree.c
+38
-0
No files found.
gcc/ChangeLog
View file @
f0632762
Tue Oct 14 11:30:29 1997 Jason Merrill <jason@yorick.cygnus.com>
* tree.c (expr_tree_cons, build_expr_list, expralloc): New fns.
Fri Oct 10 13:46:56 1997 Doug Evans <dje@canuck.cygnus.com>
* configure.in: Handle --with-newlib.
...
...
gcc/tree.c
View file @
f0632762
...
...
@@ -704,6 +704,16 @@ savealloc (size)
{
return
(
char
*
)
obstack_alloc
(
saveable_obstack
,
size
);
}
/* Allocate SIZE bytes in the expression obstack
and return a pointer to them. */
char
*
expralloc
(
size
)
int
size
;
{
return
(
char
*
)
obstack_alloc
(
expression_obstack
,
size
);
}
/* Print out which obstack an object is in. */
...
...
@@ -2002,6 +2012,20 @@ build_decl_list (parm, value)
return
node
;
}
/* Similar, but build on the expression_obstack. */
tree
build_expr_list
(
parm
,
value
)
tree
parm
,
value
;
{
register
tree
node
;
register
struct
obstack
*
ambient_obstack
=
current_obstack
;
current_obstack
=
expression_obstack
;
node
=
build_tree_list
(
parm
,
value
);
current_obstack
=
ambient_obstack
;
return
node
;
}
/* Return a newly created TREE_LIST node whose
purpose and value fields are PARM and VALUE
and whose TREE_CHAIN is CHAIN. */
...
...
@@ -2048,6 +2072,20 @@ decl_tree_cons (purpose, value, chain)
return
node
;
}
/* Similar, but build on the expression_obstack. */
tree
expr_tree_cons
(
purpose
,
value
,
chain
)
tree
purpose
,
value
,
chain
;
{
register
tree
node
;
register
struct
obstack
*
ambient_obstack
=
current_obstack
;
current_obstack
=
expression_obstack
;
node
=
tree_cons
(
purpose
,
value
,
chain
);
current_obstack
=
ambient_obstack
;
return
node
;
}
/* Same as `tree_cons' but make a permanent object. */
tree
...
...
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