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
d6fde69e
Commit
d6fde69e
authored
Apr 27, 2013
by
Jakub Jelinek
Committed by
Jakub Jelinek
Apr 27, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/i386/i386.c (ix86_expand_call): Make cregs_size unsigned.
From-SVN: r198358
parent
ba8011e6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletions
+4
-1
gcc/ChangeLog
+2
-0
gcc/config/i386/i386.c
+2
-1
No files found.
gcc/ChangeLog
View file @
d6fde69e
2013-04-27 Jakub Jelinek <jakub@redhat.com>
* config/i386/i386.c (ix86_expand_call): Make cregs_size unsigned.
PR target/56866
* config/i386/i386.c (ix86_expand_mul_widen_evenodd): Don't
use xop_pmacsdqh if uns_p.
...
...
gcc/config/i386/i386.c
View file @
d6fde69e
...
...
@@ -23714,7 +23714,8 @@ ix86_expand_call (rtx retval, rtx fnaddr, rtx callarg1,
rtx
callarg2
,
rtx
pop
,
bool
sibcall
)
{
int
const
cregs_size
=
ARRAY_SIZE
(
x86_64_ms_sysv_extra_clobbered_registers
);
unsigned
int
const
cregs_size
=
ARRAY_SIZE
(
x86_64_ms_sysv_extra_clobbered_registers
);
rtx
vec
[
3
+
cregs_size
];
rtx
use
=
NULL
,
call
;
unsigned
int
vec_len
=
0
;
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