summaryrefslogtreecommitdiff
path: root/ports/sysdeps/arm/setfpucw.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2012-08-09 10:04:56 -0700
committerRoland McGrath <roland@hack.frob.com>2012-08-09 10:04:56 -0700
commita4ca51951804c14a5a8e331747649ca767bd8524 (patch)
tree76447f78f204b8b3f6e2ee21b10b00c2e224835c /ports/sysdeps/arm/setfpucw.c
parent33b4a91e5b7935d68c50047f37b55056e5545b09 (diff)
downloadglibc-a4ca51951804c14a5a8e331747649ca767bd8524.tar.gz
Don't check HWCAP_ARM_VFP in OS-generic code.
Presume VFP if compiled without __SOFTFP__ defined.
Diffstat (limited to 'ports/sysdeps/arm/setfpucw.c')
-rw-r--r--ports/sysdeps/arm/setfpucw.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/ports/sysdeps/arm/setfpucw.c b/ports/sysdeps/arm/setfpucw.c
index d0cea32b9d..0947e273d0 100644
--- a/ports/sysdeps/arm/setfpucw.c
+++ b/ports/sysdeps/arm/setfpucw.c
@@ -1,5 +1,5 @@
/* Set the FPU control word.
- Copyright (C) 1996, 1997, 1999, 2005 Free Software Foundation, Inc.
+ Copyright (C) 1996-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 <math.h>
#include <fpu_control.h>
+#include <arm-features.h>
-#include <unistd.h>
-#include <ldsodefs.h>
-#include <dl-procinfo.h>
-#include <sysdep.h>
void
__setfpucw (fpu_control_t set)
{
- if (GLRO (dl_hwcap) & HWCAP_ARM_VFP)
+ if (ARM_HAVE_VFP)
{
fpu_control_t cw;