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
70642ee3
Commit
70642ee3
authored
Jun 21, 2003
by
Jan Hubicka
Committed by
Jan Hubicka
Jun 21, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* i386.c (ix86_va_arg): Fix allocation of temporary slot.
From-SVN: r68298
parent
02529902
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
gcc/ChangeLog
+4
-0
gcc/config/i386/i386.c
+4
-2
No files found.
gcc/ChangeLog
View file @
70642ee3
Sat Jun 21 13:41:00 CEST 2003 Jan Hubicka <jh@suse.cz>
* i386.c (ix86_va_arg): Fix allocation of temporary slot.
2003-06-20 Kazu Hirata <kazu@cs.umass.edu>
2003-06-20 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300-protos.h: Add a prototype for
* config/h8300/h8300-protos.h: Add a prototype for
...
...
gcc/config/i386/i386.c
View file @
70642ee3
...
@@ -3157,10 +3157,12 @@ ix86_va_arg (valist, type)
...
@@ -3157,10 +3157,12 @@ ix86_va_arg (valist, type)
{
{
int
i
;
int
i
;
rtx
mem
;
rtx
mem
;
rtx
x
;
/* Never use the memory itself, as it has the alias set. */
/* Never use the memory itself, as it has the alias set. */
addr_rtx
=
XEXP
(
assign_temp
(
type
,
0
,
1
,
0
),
0
);
x
=
XEXP
(
assign_temp
(
type
,
0
,
1
,
0
),
0
);
mem
=
gen_rtx_MEM
(
BLKmode
,
addr_rtx
);
mem
=
gen_rtx_MEM
(
BLKmode
,
x
);
force_operand
(
x
,
addr_rtx
);
set_mem_alias_set
(
mem
,
get_varargs_alias_set
());
set_mem_alias_set
(
mem
,
get_varargs_alias_set
());
set_mem_align
(
mem
,
BITS_PER_UNIT
);
set_mem_align
(
mem
,
BITS_PER_UNIT
);
...
...
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