diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2012-05-28 01:03:18 +0200 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2012-05-28 01:03:18 +0200 |
commit | 04fb54b50745587b5bfb7baff66ac9f69ac92db9 (patch) | |
tree | 60c88a65118d7f9ee50a06d6be54b23cdedca775 /sysdeps/sh/sh4/fpu/fegetenv.c | |
parent | 3f99608f823af08c833c85e84740bc182acafd71 (diff) | |
download | glibc-04fb54b50745587b5bfb7baff66ac9f69ac92db9.tar.gz glibc-04fb54b50745587b5bfb7baff66ac9f69ac92db9.tar.xz glibc-04fb54b50745587b5bfb7baff66ac9f69ac92db9.zip |
SH: Use fpu_control_t for the temporary FPU control word.
Diffstat (limited to 'sysdeps/sh/sh4/fpu/fegetenv.c')
-rw-r--r-- | sysdeps/sh/sh4/fpu/fegetenv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/sh/sh4/fpu/fegetenv.c b/sysdeps/sh/sh4/fpu/fegetenv.c index 3103316e34..ca7de16285 100644 --- a/sysdeps/sh/sh4/fpu/fegetenv.c +++ b/sysdeps/sh/sh4/fpu/fegetenv.c @@ -22,7 +22,7 @@ int fegetenv (fenv_t *envp) { - unsigned long int temp; + fpu_control_t temp; _FPU_GETCW (temp); /* When read fpscr, this was initialized. We need to rewrite value of temp. */ |