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
4f380204
Commit
4f380204
authored
May 05, 2001
by
David Edelsohn
Committed by
David Edelsohn
May 04, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* calls.c (store_one_arg): Don't divide align by BITS_PER_UNIT.
From-SVN: r41856
parent
c52c9a9c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+4
-0
gcc/calls.c
+3
-3
No files found.
gcc/ChangeLog
View file @
4f380204
2001
-
05
-
04
David
Edelsohn
<
edelsohn
@gnu
.
org
>
*
calls
.
c
(
store_one_arg
)
:
Don
'
t
divide
align
by
BITS_PER_UNIT
.
2001
-
05
-
04
Lars
Brinkhoff
<
lars
@nocrew
.
org
>
2001
-
05
-
04
Lars
Brinkhoff
<
lars
@nocrew
.
org
>
*
simplify
-
rtx
.
c
(
simplify_binary_operation
)
:
Simplify
~
a
+
1
*
simplify
-
rtx
.
c
(
simplify_binary_operation
)
:
Simplify
~
a
+
1
...
...
gcc/calls.c
View file @
4f380204
...
@@ -4631,9 +4631,9 @@ store_one_arg (arg, argblock, flags, variable_size, reg_parm_stack_space)
...
@@ -4631,9 +4631,9 @@ store_one_arg (arg, argblock, flags, variable_size, reg_parm_stack_space)
{
{
rtx
size_rtx1
=
GEN_INT
(
reg_parm_stack_space
-
arg
->
offset
.
constant
);
rtx
size_rtx1
=
GEN_INT
(
reg_parm_stack_space
-
arg
->
offset
.
constant
);
emit_push_insn
(
arg
->
value
,
arg
->
mode
,
TREE_TYPE
(
pval
),
size_rtx1
,
emit_push_insn
(
arg
->
value
,
arg
->
mode
,
TREE_TYPE
(
pval
),
size_rtx1
,
TYPE_ALIGN
(
TREE_TYPE
(
pval
))
/
BITS_PER_UNIT
,
TYPE_ALIGN
(
TREE_TYPE
(
pval
))
,
partial
,
reg
,
partial
,
reg
,
excess
,
argblock
,
excess
,
argblock
,
ARGS_SIZE_RTX
(
arg
->
offset
),
ARGS_SIZE_RTX
(
arg
->
offset
),
reg_parm_stack_space
,
reg_parm_stack_space
,
ARGS_SIZE_RTX
(
arg
->
alignment_pad
));
ARGS_SIZE_RTX
(
arg
->
alignment_pad
));
size_rtx
=
GEN_INT
(
INTVAL
(
size_rtx
)
-
reg_parm_stack_space
);
size_rtx
=
GEN_INT
(
INTVAL
(
size_rtx
)
-
reg_parm_stack_space
);
...
...
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