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
c35c7e52
Commit
c35c7e52
authored
Jan 30, 2003
by
Richard Henderson
Committed by
Richard Henderson
Jan 30, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-inline.c (walk_tree): Streamline duplicate hash table lookup.
From-SVN: r62151
parent
7e278bae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
gcc/ChangeLog
+4
-0
gcc/tree-inline.c
+2
-3
No files found.
gcc/ChangeLog
View file @
c35c7e52
2003
-
01
-
30
Richard
Henderson
<
rth
@redhat
.
com
>
*
tree
-
inline
.
c
(
walk_tree
)
:
Streamline
duplicate
hash
table
lookup
.
2003
-
01
-
30
Richard
Earnshaw
<
rearnsha
@arm
.
com
>
*
arm
.
c
(
arm_compute_initial_elimination_offset
)
:
If
optimizing
for
...
...
gcc/tree-inline.c
View file @
c35c7e52
...
...
@@ -1530,10 +1530,9 @@ walk_tree (tp, func, data, htab_)
/* Don't walk the same tree twice, if the user has requested
that we avoid doing so. */
if
(
htab_find
(
htab
,
*
tp
))
return
NULL_TREE
;
/* If we haven't already seen this node, add it to the table. */
slot
=
htab_find_slot
(
htab
,
*
tp
,
INSERT
);
if
(
*
slot
)
return
NULL_TREE
;
*
slot
=
*
tp
;
}
...
...
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