From 0c48a567fac7d20cce4703e714f221e5bf332f65 Mon Sep 17 00:00:00 2001 From: Ramana Radhakrishnan Date: Tue, 28 Apr 2009 16:45:19 +0000 Subject: [PATCH] FPA error for AAPCS From-SVN: r146906 --- gcc/ChangeLog | 5 +++++ gcc/config/arm/arm.c | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 610bd1c49ae..2161bc6fde6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-04-28 Ramana Radhakrishnan + + * config/arm/arm.c (arm_override_options): Emit error on using + fpa with AAPCS. + 2009-04-28 Uros Bizjak PR rtl-optimization/39914 diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index 055cb36d75d..a7847f3235d 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -1504,6 +1504,10 @@ arm_override_options (void) if (arm_float_abi == ARM_FLOAT_ABI_HARD && TARGET_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. VFP and iWMMXt can theoretically coexist, but it's unlikely such silicon will ever exist. GCC makes no attempt to support this combination. */ -- 2.30.2