commit | 4029e0e7cb68f857139c962184b64c49d769dc46 | [log] [tgz] |
---|---|---|
author | Bruce Beare <brucex.j.beare@intel.com> | Mon Oct 11 12:08:07 2010 -0700 |
committer | David 'Digit' Turner <digit@google.com> | Thu Jul 07 22:46:15 2011 +0200 |
tree | 1060a2e61b3ea02122a40613a045cdf51d7d46b3 | |
parent | 832a86eaba56dcf8066e4b96df12738a9dff7053 [diff] [blame] |
Use proper variable typing Orig-Change-Id: If5c33d90b33f538448ac12e7bee94b4b9173d39c Signed-off-by: Bruce Beare <bruce.j.beare@intel.com>
diff --git a/libm/i387/fenv.c b/libm/i387/fenv.c index 2794faf..aabe270 100644 --- a/libm/i387/fenv.c +++ b/libm/i387/fenv.c
@@ -153,7 +153,8 @@ int feupdateenv(const fenv_t *envp) { - int mxcsr, status; + int mxcsr; + short status; __fnstsw(&status); if (__HAS_SSE())