* 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.
This commit is contained in:
Corinna Vinschen
2011-03-20 15:34:29 +00:00
parent b8bdc60019
commit 33150e7f40
4 changed files with 25 additions and 4 deletions

View File

@@ -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
};