diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-08-09 10:04:56 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-08-09 10:04:56 -0700 |
commit | a4ca51951804c14a5a8e331747649ca767bd8524 (patch) | |
tree | 76447f78f204b8b3f6e2ee21b10b00c2e224835c /ports/sysdeps/arm/fclrexcpt.c | |
parent | 33b4a91e5b7935d68c50047f37b55056e5545b09 (diff) | |
download | glibc-a4ca51951804c14a5a8e331747649ca767bd8524.tar.gz glibc-a4ca51951804c14a5a8e331747649ca767bd8524.tar.xz glibc-a4ca51951804c14a5a8e331747649ca767bd8524.zip |
Don't check HWCAP_ARM_VFP in OS-generic code.
Presume VFP if compiled without __SOFTFP__ defined.
Diffstat (limited to 'ports/sysdeps/arm/fclrexcpt.c')
-rw-r--r-- | ports/sysdeps/arm/fclrexcpt.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/ports/sysdeps/arm/fclrexcpt.c b/ports/sysdeps/arm/fclrexcpt.c index ddedc3573c..23435fba78 100644 --- a/ports/sysdeps/arm/fclrexcpt.c +++ b/ports/sysdeps/arm/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear given exceptions in current floating-point environment. - Copyright (C) 1997,98,99,2000,01,05,11 Free Software Foundation, Inc. + Copyright (C) 1997-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -18,16 +18,13 @@ #include <fenv.h> #include <fpu_control.h> +#include <arm-features.h> -#include <unistd.h> -#include <ldsodefs.h> -#include <dl-procinfo.h> -#include <sysdep.h> int __feclearexcept (int excepts) { - if (GLRO (dl_hwcap) & HWCAP_ARM_VFP) + if (ARM_HAVE_VFP) { unsigned long int temp; |