From 965be3832a688aa0f082ad7e8dfd60837eccb84a Mon Sep 17 00:00:00 2001 From: erich Date: Mon, 27 Jun 1994 15:24:36 +0000 Subject: [PATCH] (enum floating_point_type): New enumeration type. (arm_fpu): New declaration. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@7571 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/config/arm/arm.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index 984bbca4fd2..de64cea8a6b 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -126,6 +126,18 @@ enum processor_type extern enum processor_type arm_cpu; +/* What sort of floating point unit do we have? Hardware or software. */ +enum floating_point_type +{ + FP_HARD, + FP_SOFT +}; + +/* Recast the floating point class to be the floating point attribute. */ +#define arm_fpu_attr ((enum attr_fpu) arm_fpu) + +extern enum floating_point_type arm_fpu; + #define TARGET_DEFAULT 0 #define TARGET_MEM_FUNCTIONS 1 -- 2.11.4.GIT