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
114cbee6
Commit
114cbee6
authored
Jan 19, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r217
parent
e13d81d0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
gcc/ginclude/va-i860.h
+4
-3
gcc/reg-stack.c
+0
-0
No files found.
gcc/ginclude/va-i860.h
View file @
114cbee6
...
@@ -46,10 +46,10 @@ typedef struct {
...
@@ -46,10 +46,10 @@ typedef struct {
#ifdef __SVR4__
#ifdef __SVR4__
unsigned
__ireg_used
;
/* How many int regs consumed 'til now? */
unsigned
__ireg_used
;
/* How many int regs consumed 'til now? */
unsigned
__freg_used
;
/* How many flt regs consumed 'til now? */
unsigned
__freg_used
;
/* How many flt regs consumed 'til now? */
__va_saved_regs
*
__reg_base
;
/* Address of where we stored the regs. */
long
*
__reg_base
;
/* Address of where we stored the regs. */
long
*
__mem_ptr
;
/* Address of memory overflow args area. */
long
*
__mem_ptr
;
/* Address of memory overflow args area. */
#else
/* pre-SVR4 */
#else
/* pre-SVR4 */
__va_saved_regs
*
__reg_base
;
/* Address of where we stored the regs. */
long
*
__reg_base
;
/* Address of where we stored the regs. */
long
*
__mem_ptr
;
/* Address of memory overflow args area. */
long
*
__mem_ptr
;
/* Address of memory overflow args area. */
unsigned
__ireg_used
;
/* How many int regs consumed 'til now? */
unsigned
__ireg_used
;
/* How many int regs consumed 'til now? */
unsigned
__freg_used
;
/* How many flt regs consumed 'til now? */
unsigned
__freg_used
;
/* How many flt regs consumed 'til now? */
...
@@ -88,7 +88,7 @@ enum {
...
@@ -88,7 +88,7 @@ enum {
#define __NUM_PARM_FREGS 8
#define __NUM_PARM_FREGS 8
#define __NUM_PARM_IREGS 12
#define __NUM_PARM_IREGS 12
#define __savereg(__va) (__va.__reg_base)
#define __savereg(__va) (
(__va_saved_regs *) (
__va.__reg_base)
/* This macro works both for SVR4 and pre-SVR4 environments. */
/* This macro works both for SVR4 and pre-SVR4 environments. */
...
@@ -105,6 +105,7 @@ enum {
...
@@ -105,6 +105,7 @@ enum {
#endif
#endif
#define va_arg(__va, __type) \
#define va_arg(__va, __type) \
__extension__ \
(* (__type *) \
(* (__type *) \
({ \
({ \
register void *__rv;
/* result value */
\
register void *__rv;
/* result value */
\
...
...
gcc/reg-stack.c
View file @
114cbee6
This diff is collapsed.
Click to expand it.
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