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
3b59a331
Commit
3b59a331
authored
Jul 17, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
entered into RCS
From-SVN: r1599
parent
c6096c5e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
9 deletions
+12
-9
gcc/calls.c
+2
-1
gcc/print-tree.c
+10
-8
No files found.
gcc/calls.c
View file @
3b59a331
...
...
@@ -114,7 +114,8 @@ calls_alloca (exp)
/* Only expressions and references can contain calls. */
if
(
type
!=
'e'
&&
type
!=
'<'
&&
type
!=
'1'
&&
type
!=
'2'
&&
type
!=
'r'
)
if
(
type
!=
'e'
&&
type
!=
'<'
&&
type
!=
'1'
&&
type
!=
'2'
&&
type
!=
'r'
&&
type
!=
'b'
)
return
0
;
switch
(
TREE_CODE
(
exp
))
...
...
gcc/print-tree.c
View file @
3b59a331
...
...
@@ -467,6 +467,16 @@ print_node (file, prefix, node, indent)
print_node_brief
(
file
,
"chain"
,
TREE_CHAIN
(
node
),
indent
+
4
);
break
;
case
'b'
:
print_node
(
file
,
"vars"
,
BLOCK_VARS
(
node
),
indent
+
4
);
print_node
(
file
,
"tags"
,
BLOCK_TYPE_TAGS
(
node
),
indent
+
4
);
print_node
(
file
,
"supercontext"
,
BLOCK_SUPERCONTEXT
(
node
),
indent
+
4
);
print_node
(
file
,
"subblocks"
,
BLOCK_SUBBLOCKS
(
node
),
indent
+
4
);
print_node
(
file
,
"chain"
,
BLOCK_CHAIN
(
node
),
indent
+
4
);
print_node
(
file
,
"abstract_origin"
,
BLOCK_ABSTRACT_ORIGIN
(
node
),
indent
+
4
);
return
;
case
'e'
:
case
'<'
:
case
'1'
:
...
...
@@ -475,14 +485,6 @@ print_node (file, prefix, node, indent)
case
's'
:
switch
(
TREE_CODE
(
node
))
{
case
BLOCK
:
print_node
(
file
,
"vars"
,
BLOCK_VARS
(
node
),
indent
+
4
);
print_node
(
file
,
"tags"
,
BLOCK_TYPE_TAGS
(
node
),
indent
+
4
);
print_node
(
file
,
"supercontext"
,
BLOCK_SUPERCONTEXT
(
node
),
indent
+
4
);
print_node
(
file
,
"subblocks"
,
BLOCK_SUBBLOCKS
(
node
),
indent
+
4
);
print_node
(
file
,
"chain"
,
BLOCK_CHAIN
(
node
),
indent
+
4
);
return
;
case
BIND_EXPR
:
print_node
(
file
,
"vars"
,
TREE_OPERAND
(
node
,
0
),
indent
+
4
);
print_node
(
file
,
"body"
,
TREE_OPERAND
(
node
,
1
),
indent
+
4
);
...
...
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