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
1810c3fa
Commit
1810c3fa
authored
Dec 22, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(chainon): Detect more circularities.
From-SVN: r6266
parent
b60e974d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
gcc/tree.c
+9
-5
No files found.
gcc/tree.c
View file @
1810c3fa
...
...
@@ -1571,14 +1571,18 @@ tree
chainon
(
op1
,
op2
)
tree
op1
,
op2
;
{
tree
t
;
if
(
op1
)
{
for
(
t
=
op1
;
TREE_CHAIN
(
t
);
t
=
TREE_CHAIN
(
t
))
if
(
t
==
op2
)
abort
();
/* Circularity being created */
if
(
t
==
op2
)
abort
();
/* Circularity being created */
TREE_CHAIN
(
t
)
=
op2
;
register
tree
t1
;
register
tree
t2
;
for
(
t1
=
op1
;
TREE_CHAIN
(
t1
);
t1
=
TREE_CHAIN
(
t1
))
;
TREE_CHAIN
(
t1
)
=
op2
;
for
(
t2
=
op2
;
t2
;
t2
=
TREE_CHAIN
(
t2
))
if
(
t2
==
t1
)
abort
();
/* Circularity created. */
return
op1
;
}
else
return
op2
;
...
...
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