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
4d5dcfb2
Commit
4d5dcfb2
authored
Apr 27, 2011
by
Jan Hubicka
Committed by
Jan Hubicka
Apr 27, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cgraphunit.c (cgraph_process_new_functions): Fix ordering issue.
From-SVN: r173039
parent
c224bdc1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
+7
-1
gcc/ChangeLog
+4
-0
gcc/cgraphunit.c
+3
-1
No files found.
gcc/ChangeLog
View file @
4d5dcfb2
2011-04-27 Jan Hubicka <jh@suse.cz>
* cgraphunit.c (cgraph_process_new_functions): Fix ordering issue.
2011-04-27 Uros Bizjak <ubizjak@gmail.com>
* config/i386/predicates.md (avx_vpermilp_*_operand): Remove.
...
...
gcc/cgraphunit.c
View file @
4d5dcfb2
...
...
@@ -233,6 +233,7 @@ cgraph_process_new_functions (void)
cgraph_finalize_function
(
fndecl
,
false
);
cgraph_mark_reachable_node
(
node
);
output
=
true
;
cgraph_call_function_insertion_hooks
(
node
);
break
;
case
CGRAPH_STATE_IPA
:
...
...
@@ -258,12 +259,14 @@ cgraph_process_new_functions (void)
free_dominance_info
(
CDI_DOMINATORS
);
pop_cfun
();
current_function_decl
=
NULL
;
cgraph_call_function_insertion_hooks
(
node
);
break
;
case
CGRAPH_STATE_EXPANSION
:
/* Functions created during expansion shall be compiled
directly. */
node
->
process
=
0
;
cgraph_call_function_insertion_hooks
(
node
);
cgraph_expand_function
(
node
);
break
;
...
...
@@ -271,7 +274,6 @@ cgraph_process_new_functions (void)
gcc_unreachable
();
break
;
}
cgraph_call_function_insertion_hooks
(
node
);
varpool_analyze_pending_decls
();
}
return
output
;
...
...
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