Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2011-03-20 18:34:29 +0300
committerCorinna Vinschen <corinna@vinschen.de>2011-03-20 18:34:29 +0300
commit33150e7f40f034cbffcb43fba1d560ce162ab3ff (patch)
tree4278614b351f9b5da14d3dce899ef825ea5b04d5 /winsup/cygwin/wincap.h
parentb8bdc60019e426b4f0cef85d5f02ba803467fbd3 (diff)
* fenv.cc (_feinitialise); Don't use SSE instructions on systems not
supporting them. * wincap.h (wincaps::supports_sse): New element. * wincap.cc: Implement above element throughout.
Diffstat (limited to 'winsup/cygwin/wincap.h')
-rw-r--r--winsup/cygwin/wincap.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/winsup/cygwin/wincap.h b/winsup/cygwin/wincap.h
index 60d051268..af86b1020 100644
--- a/winsup/cygwin/wincap.h
+++ b/winsup/cygwin/wincap.h
@@ -53,6 +53,7 @@ struct wincaps
unsigned has_restricted_raw_disk_access : 1;
unsigned use_dont_resolve_hack : 1;
unsigned use_get_sec_info_on_dirs : 1;
+ unsigned supports_sse : 1;
};
class wincapc
@@ -111,6 +112,7 @@ public:
bool IMPLEMENT (has_restricted_raw_disk_access)
bool IMPLEMENT (use_dont_resolve_hack)
bool IMPLEMENT (use_get_sec_info_on_dirs)
+ bool IMPLEMENT (supports_sse)
#undef IMPLEMENT
};