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
1d1ade42
Commit
1d1ade42
authored
Feb 11, 2002
by
Alexandre Oliva
Committed by
Alexandre Oliva
Feb 11, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/sh/sh.h (FUNCTION_ARG_REGNO_P): Fix parenthesizing error.
From-SVN: r49674
parent
4210cb5b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
gcc/ChangeLog
+2
-0
gcc/config/sh/sh.h
+2
-2
No files found.
gcc/ChangeLog
View file @
1d1ade42
2002-02-11 Alexandre Oliva <aoliva@redhat.com>
2002-02-11 Alexandre Oliva <aoliva@redhat.com>
* config/sh/sh.h (FUNCTION_ARG_REGNO_P): Fix parenthesizing error.
* combine.c (try_combine): Apply substitutions in
* combine.c (try_combine): Apply substitutions in
CALL_INSN_FUNCTION_USAGE too.
CALL_INSN_FUNCTION_USAGE too.
...
...
gcc/config/sh/sh.h
View file @
1d1ade42
...
@@ -1421,10 +1421,10 @@ extern const enum reg_class reg_class_from_letter[];
...
@@ -1421,10 +1421,10 @@ extern const enum reg_class reg_class_from_letter[];
/* 1 if N is a possible register number for function argument passing. */
/* 1 if N is a possible register number for function argument passing. */
#define FUNCTION_ARG_REGNO_P(REGNO) \
#define FUNCTION_ARG_REGNO_P(REGNO) \
(((REGNO) >= FIRST_PARM_REG && (REGNO) < (FIRST_PARM_REG \
(((REGNO) >= FIRST_PARM_REG && (REGNO) < (FIRST_PARM_REG \
+ NPARM_REGS (SImode)) \
+ NPARM_REGS (SImode))
)
\
|| (TARGET_FPU_ANY \
|| (TARGET_FPU_ANY \
&& (REGNO) >= FIRST_FP_PARM_REG && (REGNO) < (FIRST_FP_PARM_REG \
&& (REGNO) >= FIRST_FP_PARM_REG && (REGNO) < (FIRST_FP_PARM_REG \
+ NPARM_REGS (SFmode))))
)
+ NPARM_REGS (SFmode))))
/* Define a data type for recording info about an argument list
/* Define a data type for recording info about an argument list
during the scan of that argument list. This data type should
during the scan of that argument list. This data type should
...
...
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