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
da484a80
Commit
da484a80
authored
Mar 28, 1996
by
Jeff Law
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ginclude/va-h8300.h (va_arg): Don't assume sizeof (int) == 4.
From-SVN: r11626
parent
31d4f31f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gcc/ginclude/va-h8300.h
+3
-3
No files found.
gcc/ginclude/va-h8300.h
View file @
da484a80
...
@@ -44,9 +44,9 @@ typedef void *__gnuc_va_list;
...
@@ -44,9 +44,9 @@ typedef void *__gnuc_va_list;
#define va_arg(AP, TYPE) \
#define va_arg(AP, TYPE) \
(AP = (__gnuc_va_list) ((char *) (AP) + __va_rounded_size (TYPE)), \
(AP = (__gnuc_va_list) ((char *) (AP) + __va_rounded_size (TYPE)), \
*((TYPE *) (void *) ((char *) (AP)
- ((sizeof (TYPE) < 4
\
*((TYPE *) (void *) ((char *) (AP)
\
? sizeof (TYPE)
\
- ((sizeof (TYPE) < __va_rounded_size (int)
\
: __va_rounded_size (TYPE))))))
? sizeof (TYPE)
: __va_rounded_size (TYPE))))))
#define va_end(AP) ((void) 0)
#define va_end(AP) ((void) 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