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
4aa1c0d5
Commit
4aa1c0d5
authored
Jul 05, 2010
by
Jan Hubicka
Committed by
Jan Hubicka
Jul 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lto-cgraph.c (input_edge): Do not care about resolution decisions.
From-SVN: r161812
parent
a05541a9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
8 deletions
+4
-8
gcc/ChangeLog
+4
-0
gcc/lto-cgraph.c
+0
-8
No files found.
gcc/ChangeLog
View file @
4aa1c0d5
2010-07-04 Jan Hubicka <jh@suse.cz>
* lto-cgraph.c (input_edge): Do not care about resolution decisions.
2010-07-04 Jan Hubicka <jh@suse.cz>
* cgraphunit.c (init_cgraph): Only initialize dump file if it is not already
initialized.
...
...
gcc/lto-cgraph.c
View file @
4aa1c0d5
...
...
@@ -1158,7 +1158,6 @@ input_edge (struct lto_input_block *ib, VEC(cgraph_node_ptr, heap) *nodes,
unsigned
int
nest
;
cgraph_inline_failed_t
inline_failed
;
struct
bitpack_d
bp
;
enum
ld_plugin_symbol_resolution
caller_resolution
;
int
ecf_flags
=
0
;
caller
=
VEC_index
(
cgraph_node_ptr
,
nodes
,
lto_input_sleb128
(
ib
));
...
...
@@ -1183,13 +1182,6 @@ input_edge (struct lto_input_block *ib, VEC(cgraph_node_ptr, heap) *nodes,
freq
=
(
int
)
bp_unpack_value
(
&
bp
,
HOST_BITS_PER_INT
);
nest
=
(
unsigned
)
bp_unpack_value
(
&
bp
,
30
);
/* If the caller was preempted, don't create the edge.
??? Should we ever have edges from a preempted caller? */
caller_resolution
=
lto_symtab_get_resolution
(
caller
->
decl
);
if
(
caller_resolution
==
LDPR_PREEMPTED_REG
||
caller_resolution
==
LDPR_PREEMPTED_IR
)
return
;
if
(
indirect
)
edge
=
cgraph_create_indirect_edge
(
caller
,
NULL
,
0
,
count
,
freq
,
nest
);
else
...
...
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