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
0ea6f6a0
Commit
0ea6f6a0
authored
Feb 03, 2002
by
Kazu Hirata
Committed by
Kazu Hirata
Feb 03, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/h8300/h8300.c (hand_list): Move inside function_arg.
From-SVN: r49454
parent
cbf1b2da
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
20 deletions
+23
-20
gcc/ChangeLog
+4
-0
gcc/config/h8300/h8300.c
+19
-20
No files found.
gcc/ChangeLog
View file @
0ea6f6a0
2002-02-02 Kazu Hirata <kazu@hxi.com>
2002-02-02 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300.c (hand_list): Move inside function_arg.
2002-02-02 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300.c (h8_push_ops): Move inside
* config/h8300/h8300.c (h8_push_ops): Move inside
h8300_init_once.
h8300_init_once.
(h8_pop_ops): Likewise.
(h8_pop_ops): Likewise.
...
...
gcc/config/h8300/h8300.c
View file @
0ea6f6a0
...
@@ -794,26 +794,6 @@ h8300_pr_saveall (pfile)
...
@@ -794,26 +794,6 @@ h8300_pr_saveall (pfile)
pragma_saveall
=
1
;
pragma_saveall
=
1
;
}
}
static
const
char
*
const
hand_list
[]
=
{
"__main"
,
"__cmpsi2"
,
"__divhi3"
,
"__modhi3"
,
"__udivhi3"
,
"__umodhi3"
,
"__divsi3"
,
"__modsi3"
,
"__udivsi3"
,
"__umodsi3"
,
"__mulhi3"
,
"__mulsi3"
,
"__reg_memcpy"
,
"__reg_memset"
,
"__ucmpsi2"
,
0
,
};
/* If the next function argument with MODE and TYPE is to be passed in
/* If the next function argument with MODE and TYPE is to be passed in
a register, return a reg RTX for the hard register in which to pass
a register, return a reg RTX for the hard register in which to pass
the argument. CUM represents the state after the last argument.
the argument. CUM represents the state after the last argument.
...
@@ -826,6 +806,25 @@ function_arg (cum, mode, type, named)
...
@@ -826,6 +806,25 @@ function_arg (cum, mode, type, named)
tree
type
;
tree
type
;
int
named
;
int
named
;
{
{
static
const
char
*
const
hand_list
[]
=
{
"__main"
,
"__cmpsi2"
,
"__divhi3"
,
"__modhi3"
,
"__udivhi3"
,
"__umodhi3"
,
"__divsi3"
,
"__modsi3"
,
"__udivsi3"
,
"__umodsi3"
,
"__mulhi3"
,
"__mulsi3"
,
"__reg_memcpy"
,
"__reg_memset"
,
"__ucmpsi2"
,
0
,
};
rtx
result
=
NULL_RTX
;
rtx
result
=
NULL_RTX
;
const
char
*
fname
;
const
char
*
fname
;
int
regpass
=
0
;
int
regpass
=
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