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
15e0e275
Commit
15e0e275
authored
Jan 27, 2002
by
Kazu Hirata
Committed by
Kazu Hirata
Jan 27, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/h8300/h8300.c (function_arg): Remove redundant code.
From-SVN: r49263
parent
37a0f8a5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
18 deletions
+7
-18
gcc/ChangeLog
+4
-0
gcc/config/h8300/h8300.c
+3
-18
No files found.
gcc/ChangeLog
View file @
15e0e275
2002-01-27 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300.c (function_arg): Remove redundant code.
2002-01-26 Richard Henderson <rth@redhat.com>
2002-01-26 Richard Henderson <rth@redhat.com>
* sched-deps.c (reg_pending_uses_head): New.
* sched-deps.c (reg_pending_uses_head): New.
...
...
gcc/config/h8300/h8300.c
View file @
15e0e275
...
@@ -861,24 +861,9 @@ function_arg (cum, mode, type, named)
...
@@ -861,24 +861,9 @@ function_arg (cum, mode, type, named)
else
else
size
=
GET_MODE_SIZE
(
mode
);
size
=
GET_MODE_SIZE
(
mode
);
if
(
size
+
cum
->
nbytes
<=
regpass
*
UNITS_PER_WORD
)
if
(
size
+
cum
->
nbytes
<=
regpass
*
UNITS_PER_WORD
{
&&
cum
->
nbytes
/
UNITS_PER_WORD
<=
3
)
switch
(
cum
->
nbytes
/
UNITS_PER_WORD
)
result
=
gen_rtx_REG
(
mode
,
cum
->
nbytes
/
UNITS_PER_WORD
);
{
case
0
:
result
=
gen_rtx_REG
(
mode
,
0
);
break
;
case
1
:
result
=
gen_rtx_REG
(
mode
,
1
);
break
;
case
2
:
result
=
gen_rtx_REG
(
mode
,
2
);
break
;
case
3
:
result
=
gen_rtx_REG
(
mode
,
3
);
break
;
}
}
}
}
return
result
;
return
result
;
...
...
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