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
d8bea1c6
Commit
d8bea1c6
authored
24 years ago
by
Rodney Brown
Committed by
Jeff Law
24 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pa.h (FUNCTION_ARG_ADVANCE): Warning removal.
From-SVN: r33713
parent
7d76ae56
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
gcc/ChangeLog
+4
-0
gcc/config/pa/pa.h
+3
-4
No files found.
gcc/ChangeLog
View file @
d8bea1c6
2000
-
05
-
03
Rodney
Brown
<
RodneyBrown
@mynd
.
com
>
*
pa
.
h
(
FUNCTION_ARG_ADVANCE
)
:
Warning
removal
.
Fri
May
5
10
:
29
:
21
2000
Marc
Espie
<
espie
@cvs
.
openbsd
.
org
>
*
config
/
openbsd
.
h
(
LINK_SPEC
)
:
pass
correct
flags
to
ld
...
...
This diff is collapsed.
Click to expand it.
gcc/config/pa/pa.h
View file @
d8bea1c6
...
...
@@ -727,10 +727,9 @@ struct hppa_args {int words, nargs_prototype, indirect; };
#define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED) \
{ (CUM).nargs_prototype--; \
((((CUM).words & 01) && (TYPE) != 0 \
&& FUNCTION_ARG_SIZE(MODE, TYPE) > 1) \
&& (CUM).words++), \
(CUM).words += FUNCTION_ARG_SIZE(MODE, TYPE); \
(CUM).words += FUNCTION_ARG_SIZE(MODE, TYPE) \
+ (((CUM).words & 01) && (TYPE) != 0 \
&& FUNCTION_ARG_SIZE(MODE, TYPE) > 1); \
}
/* Determine where to put an argument to a function.
...
...
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