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
8bf3ccbb
Commit
8bf3ccbb
authored
Jul 01, 2002
by
Kaveh R. Ghazi
Committed by
Kaveh Ghazi
Jul 01, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* mips.h (FUNCTION_ARG_REGNO_P): Fix parentheses.
From-SVN: r55133
parent
0201312b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
5 deletions
+8
-5
gcc/ChangeLog
+4
-0
gcc/config/mips/mips.h
+4
-5
No files found.
gcc/ChangeLog
View file @
8bf3ccbb
2002-07-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* mips.h (FUNCTION_ARG_REGNO_P): Fix parentheses.
2002-06-30 Devang Patel <dpatel@apple.com>
2002-06-30 Devang Patel <dpatel@apple.com>
* objc/objc-act.c (finish_file): Avoid finish_objc() if
* objc/objc-act.c (finish_file): Avoid finish_objc() if
...
...
gcc/config/mips/mips.h
View file @
8bf3ccbb
...
@@ -2573,11 +2573,10 @@ extern enum reg_class mips_char_to_class[256];
...
@@ -2573,11 +2573,10 @@ extern enum reg_class mips_char_to_class[256];
/* For o64 we should be checking the mode for SFmode as well. */
/* For o64 we should be checking the mode for SFmode as well. */
#define FUNCTION_ARG_REGNO_P(N) \
#define FUNCTION_ARG_REGNO_P(N) \
((((N) >= GP_ARG_FIRST && (N) <= GP_ARG_LAST) \
((IN_RANGE((N), GP_ARG_FIRST, GP_ARG_LAST) \
|| ((N) >= FP_ARG_FIRST && (N) <= FP_ARG_LAST \
|| (IN_RANGE((N), FP_ARG_FIRST, FP_ARG_LAST) \
&& (((N) % FP_INC) == 0 \
&& ((N) % FP_INC == 0) && mips_abi != ABI_O64)) \
&& (! mips_abi == ABI_O64))) \
&& !fixed_regs[N])
&& !fixed_regs[N]))
/* A C expression which can inhibit the returning of certain function
/* A C expression which can inhibit the returning of certain function
values in registers, based on the type of value. A nonzero value says
values in registers, based on the type of value. A nonzero value says
...
...
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