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
182a0c11
Commit
182a0c11
authored
Sep 07, 2010
by
Richard Henderson
Committed by
Richard Henderson
Sep 07, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Always do output_function_exception_table before assemble_end_function.
From-SVN: r163974
parent
fa9a7193
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
9 deletions
+8
-9
gcc/ChangeLog
+5
-0
gcc/final.c
+3
-9
No files found.
gcc/ChangeLog
View file @
182a0c11
2010-09-07 Richard Henderson <rth@redhat.com>
* final.c (rest_of_handle_final): Unconditionally do
output_function_exception_table before assemble_end_function.
2010-09-07 Jan Hubicka <jh@suse.cz>
2010-09-07 Jan Hubicka <jh@suse.cz>
* tree-inline.c (tree_inlinable_function_p): Do not test DECL_REPLACEABLE_P.
* tree-inline.c (tree_inlinable_function_p): Do not test DECL_REPLACEABLE_P.
...
...
gcc/final.c
View file @
182a0c11
...
@@ -4240,19 +4240,13 @@ rest_of_handle_final (void)
...
@@ -4240,19 +4240,13 @@ rest_of_handle_final (void)
final
(
get_insns
(),
asm_out_file
,
optimize
);
final
(
get_insns
(),
asm_out_file
,
optimize
);
final_end_function
();
final_end_function
();
#ifdef TARGET_UNWIND_INFO
/* The IA-64 ".handlerdata" directive must be issued before the ".endp"
/* ??? The IA-64 ".handlerdata" directive must be issued before
directive that closes the procedure descriptor. Similarly, for x64 SEH.
the ".endp" directive that closes the procedure descripto
r. */
Otherwise it's not strictly necessary, but it doesn't hurt eithe
r. */
output_function_exception_table
(
fnname
);
output_function_exception_table
(
fnname
);
#endif
assemble_end_function
(
current_function_decl
,
fnname
);
assemble_end_function
(
current_function_decl
,
fnname
);
#ifndef TARGET_UNWIND_INFO
/* Otherwise, it feels unclean to switch sections in the middle. */
output_function_exception_table
(
fnname
);
#endif
user_defined_section_attribute
=
false
;
user_defined_section_attribute
=
false
;
/* Free up reg info memory. */
/* Free up reg info memory. */
...
...
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