From 9e9219f327f8b9bc2ebce28296e46698def176f1 Mon Sep 17 00:00:00 2001 From: Richard Earnshaw Date: Thu, 15 Dec 2016 15:51:35 +0000 Subject: [PATCH] [arm] Delete unused arm_fp_model The arm_fp_model enumeration type has only had one useful value since the FPA support was removed, and it's no-longer used anywhere. This patch just cleans that up by removing it. * arm.h (arm_fp_model): Delete. From-SVN: r243706 --- gcc/ChangeLog | 4 ++++ gcc/config/arm/arm.h | 8 -------- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fddd26d..6e55f72 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2016-12-15 Richard Earnshaw + * arm.h (arm_fp_model): Delete. + +2016-12-15 Richard Earnshaw + * arm-cores.def: Remove FLAGS field from all core definitions. * arm-arches.def: Likewise. * arm-opts.h (enum processor_type): Remove FLAGS parameter from diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index 6661314..7690e70 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -340,14 +340,6 @@ typedef unsigned long arm_fpu_feature_set; #define FPU_FL_FP16 (1 << 1) /* Half-precision. */ #define FPU_FL_CRYPTO (1 << 2) /* Crypto extensions. */ -/* Which floating point model to use. */ -enum arm_fp_model -{ - ARM_FP_MODEL_UNKNOWN, - /* VFP floating point model. */ - ARM_FP_MODEL_VFP -}; - enum vfp_reg_type { VFP_NONE = 0, -- 2.7.4