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
41fe0b83
Commit
41fe0b83
authored
Aug 16, 1993
by
John Hassey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed va_list problem in _int_varargs.h
From-SVN: r5165
parent
9c5501da
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
9 deletions
+17
-9
gcc/fixinc.dgux
+17
-9
No files found.
gcc/fixinc.dgux
View file @
41fe0b83
...
@@ -133,19 +133,27 @@ if [ -r ${INPUT}/$file ]; then
...
@@ -133,19 +133,27 @@ if [ -r ${INPUT}/$file ]; then
echo
Replacing
$file
echo
Replacing
$file
cat
>
${
LIB
}
/
$file
<<
EOF
cat
>
${
LIB
}
/
$file
<<
EOF
/* This file was generated by fixinc.dgux. */
/* This file was generated by fixinc.dgux. */
#ifndef __INT_VARARGS_H
#define __INT_VARARGS_H
/* Define __gnuc_va_list, just as in gstdarg.h. */
#if defined(__m88k__) && defined (__DGUX__)
#ifndef __GNUC_VA_LIST
#ifndef __GNUC_VA_LIST
#define __GNUC_VA_LIST
#define __GNUC_VA_LIST
#if defined(__svr4__) || defined(_AIX) || defined(_M_UNIX)
typedef struct
typedef char *__gnuc_va_list;
{
#else
int __va_arg; /* argument number */
typedef void *__gnuc_va_list;
int *__va_stk; /* start of args passed on stack */
#endif
int *__va_reg; /* start of args passed in regs */
#endif
} __gnuc_va_list;
#endif /* not __GNUC_VA_LIST */
#endif /* 88k && dgux */
#ifndef _VA_LIST_
#define _VA_LIST_
typedef __gnuc_va_list va_list;
typedef __gnuc_va_list va_list;
#endif /* _VA_LIST_ */
#endif /* __INT_VARARGS_H */
EOF
EOF
chmod a+r
${
LIB
}
/
$file
chmod a+r
${
LIB
}
/
$file
...
...
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