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
0f4668ef
Commit
0f4668ef
authored
Apr 17, 1999
by
Craig Burley
Committed by
Craig Burley
Apr 17, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check for circularity only if ENABLE_CHECKING is defined
From-SVN: r26517
parent
75e8000e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
gcc/ChangeLog
+5
-0
gcc/tree.c
+2
-0
No files found.
gcc/ChangeLog
View file @
0f4668ef
Sat
Apr
17
14
:
36
:
19
1999
Craig
Burley
<
craig
@jcb
-
sc
.
com
>
*
tree
.
c
(
chainon
)
:
Check
for
circularity
only
if
ENABLE_CHECKING
is
defined
.
1999
-
04
-
17
10
:
15
-
0400
Zack
Weinberg
<
zack
@rabi
.
columbia
.
edu
>
*
cccp
.
c
:
Make
fatal
non
-
static
.
...
...
gcc/tree.c
View file @
0f4668ef
...
...
@@ -1956,9 +1956,11 @@ chainon (op1, op2)
for
(
t1
=
op1
;
TREE_CHAIN
(
t1
);
t1
=
TREE_CHAIN
(
t1
))
;
TREE_CHAIN
(
t1
)
=
op2
;
#ifdef ENABLE_CHECKING
for
(
t2
=
op2
;
t2
;
t2
=
TREE_CHAIN
(
t2
))
if
(
t2
==
t1
)
abort
();
/* Circularity created. */
#endif
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