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
574c75a3
Commit
574c75a3
authored
Mar 30, 1993
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fkx
fix CLASS_MAX_NREGS to reflect -mfloat64 and -msoft-float. From-SVN: r3931
parent
dbc131f3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
gcc/config/mips/mips.h
+9
-4
No files found.
gcc/config/mips/mips.h
View file @
574c75a3
...
...
@@ -645,7 +645,7 @@ while (0)
/* Print subsidiary information on the compiler version in use. */
#define MIPS_VERSION "[AL 1.1, MM 3
6
]"
#define MIPS_VERSION "[AL 1.1, MM 3
7
]"
#ifndef MACHINE_TYPE
#define MACHINE_TYPE "BSD Mips"
...
...
@@ -1454,10 +1454,15 @@ extern enum reg_class mips_char_to_class[];
/* Return the maximum number of consecutive registers
needed to represent mode MODE in a register of class CLASS. */
#define CLASS_UNITS(mode, num) \
((GET_MODE_SIZE (mode) + ((num) * UNITS_PER_WORD) + 1) / ((num) * UNITS_PER_WORD))
#define CLASS_MAX_NREGS(CLASS, MODE) \
((((MODE) == DFmode) || ((MODE) == SFmode)) ? 2 \
: ((MODE) == VOIDmode)? ((CLASS) == FP_REGS ? 2 : 1) \
: ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))
(((CLASS) == FP_REGS && TARGET_FLOAT64) \
? CLASS_UNITS (MODE, 2) \
: (((CLASS) == FP_REGS) \
? (2*CLASS_UNITS (MODE, 1)) \
: CLASS_UNITS (MODE, 1)))
/* If defined, this is a C expression whose value should be
nonzero if the insn INSN has the effect of mysteriously
...
...
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