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
c187d33c
Commit
c187d33c
authored
Apr 27, 2011
by
Ulrich Weigand
Committed by
Ulrich Weigand
Apr 27, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/spu/spu.c (spu_expand_epilogue): Do not emit barrier.
From-SVN: r173028
parent
40982661
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
gcc/ChangeLog
+4
-0
gcc/config/spu/spu.c
+2
-4
No files found.
gcc/ChangeLog
View file @
c187d33c
2011-04-27 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
* config/spu/spu.c (spu_expand_epilogue): Do not emit barrier.
2011-04-27 Jan Hubicka <jh@suse.cz>
2011-04-27 Jan Hubicka <jh@suse.cz>
* ipa-prop.c (function_insertion_hook_holder): New holder.
* ipa-prop.c (function_insertion_hook_holder): New holder.
...
...
gcc/config/spu/spu.c
View file @
c187d33c
...
@@ -2107,7 +2107,7 @@ spu_expand_epilogue (bool sibcall_p)
...
@@ -2107,7 +2107,7 @@ spu_expand_epilogue (bool sibcall_p)
int
size
=
get_frame_size
(),
offset
,
regno
;
int
size
=
get_frame_size
(),
offset
,
regno
;
HOST_WIDE_INT
saved_regs_size
,
total_size
;
HOST_WIDE_INT
saved_regs_size
,
total_size
;
rtx
sp_reg
=
gen_rtx_REG
(
Pmode
,
STACK_POINTER_REGNUM
);
rtx
sp_reg
=
gen_rtx_REG
(
Pmode
,
STACK_POINTER_REGNUM
);
rtx
jump
,
scratch_reg_0
;
rtx
scratch_reg_0
;
if
(
spu_naked_function_p
(
current_function_decl
))
if
(
spu_naked_function_p
(
current_function_decl
))
return
;
return
;
...
@@ -2149,10 +2149,8 @@ spu_expand_epilogue (bool sibcall_p)
...
@@ -2149,10 +2149,8 @@ spu_expand_epilogue (bool sibcall_p)
if
(
!
sibcall_p
)
if
(
!
sibcall_p
)
{
{
emit_use
(
gen_rtx_REG
(
SImode
,
LINK_REGISTER_REGNUM
));
emit_use
(
gen_rtx_REG
(
SImode
,
LINK_REGISTER_REGNUM
));
jump
=
emit_jump_insn
(
gen__return
());
emit_jump_insn
(
gen__return
());
emit_barrier_after
(
jump
);
}
}
}
}
rtx
rtx
...
...
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