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
0c48a567
Commit
0c48a567
authored
Apr 28, 2009
by
Ramana Radhakrishnan
Committed by
Ramana Radhakrishnan
Apr 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FPA error for AAPCS
From-SVN: r146906
parent
e6a5e544
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
gcc/ChangeLog
+5
-0
gcc/config/arm/arm.c
+4
-0
No files found.
gcc/ChangeLog
View file @
0c48a567
2009-04-28 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
* config/arm/arm.c (arm_override_options): Emit error on using
fpa with AAPCS.
2009-04-28 Uros Bizjak <ubizjak@gmail.com>
2009-04-28 Uros Bizjak <ubizjak@gmail.com>
PR rtl-optimization/39914
PR rtl-optimization/39914
...
...
gcc/config/arm/arm.c
View file @
0c48a567
...
@@ -1504,6 +1504,10 @@ arm_override_options (void)
...
@@ -1504,6 +1504,10 @@ arm_override_options (void)
if
(
arm_float_abi
==
ARM_FLOAT_ABI_HARD
&&
TARGET_VFP
)
if
(
arm_float_abi
==
ARM_FLOAT_ABI_HARD
&&
TARGET_VFP
)
sorry
(
"-mfloat-abi=hard and VFP"
);
sorry
(
"-mfloat-abi=hard and VFP"
);
if
(
TARGET_AAPCS_BASED
&&
(
arm_fp_model
==
ARM_FP_MODEL_FPA
))
error
(
"FPA is unsupported in the AAPCS"
);
/* FPA and iWMMXt are incompatible because the insn encodings overlap.
/* FPA and iWMMXt are incompatible because the insn encodings overlap.
VFP and iWMMXt can theoretically coexist, but it's unlikely such silicon
VFP and iWMMXt can theoretically coexist, but it's unlikely such silicon
will ever exist. GCC makes no attempt to support this combination. */
will ever exist. GCC makes no attempt to support this combination. */
...
...
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