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
07c10d8f
Commit
07c10d8f
authored
Mar 18, 2016
by
Jason Merrill
Committed by
Jason Merrill
Mar 18, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* calls.c (load_register_parameters): Fix zero size sibcall logic.
From-SVN: r234332
parent
09d8f359
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
3 deletions
+14
-3
gcc/ChangeLog
+4
-0
gcc/calls.c
+3
-3
gcc/testsuite/gcc.dg/sibcall-11.c
+7
-0
No files found.
gcc/ChangeLog
View file @
07c10d8f
2016-03-18 Jason Merrill <jason@redhat.com>
* calls.c (load_register_parameters): Fix zero size sibcall logic.
2016-03-18 Kirill Yukhin <kirill.yukhin@intel.com>
* config/i386/sse.md: Use vpbroadcastq for broadcasting DF
...
...
gcc/calls.c
View file @
07c10d8f
...
...
@@ -2083,9 +2083,9 @@ load_register_parameters (struct arg_data *args, int num_actuals,
/* Check for overlap with already clobbered argument area,
providing that this has non-zero size. */
if
(
is_sibcall
&&
(
size
=
=
0
||
mem_overlaps_already_clobbered_arg_p
(
XEXP
(
args
[
i
].
value
,
0
),
size
)))
&&
size
!
=
0
&&
(
mem_overlaps_already_clobbered_arg_p
(
XEXP
(
args
[
i
].
value
,
0
),
size
)))
*
sibcall_failure
=
1
;
if
(
size
%
UNITS_PER_WORD
==
0
...
...
gcc/testsuite/gcc.dg/sibcall-11.c
0 → 100644
View file @
07c10d8f
// Test for sibcall optimization with empty struct.
// { dg-options "-O2" }
// { dg-final { scan-assembler "jmp" { target i?86-*-* x86_64-*-* } } }
struct
A
{
};
void
f
(
struct
A
);
void
g
(
struct
A
a
)
{
f
(
a
);
}
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