diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2012-06-09 18:46:01 +0200 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2012-06-09 18:46:01 +0200 |
commit | 99ff6e5c49c10bb1827e102c7a8eb6b504f0886f (patch) | |
tree | b4b46c4f707a57b5a4c73f6fa6238774784f8a4b /sysdeps/sh/sh4/fpu/fegetround.c | |
parent | 366af02c96eea0a03ccd2fa187819d866ac49ba2 (diff) | |
download | glibc-99ff6e5c49c10bb1827e102c7a8eb6b504f0886f.tar.gz glibc-99ff6e5c49c10bb1827e102c7a8eb6b504f0886f.tar.xz glibc-99ff6e5c49c10bb1827e102c7a8eb6b504f0886f.zip |
SH: No FE_UPWARD, FE_DOWNWARD.
Diffstat (limited to 'sysdeps/sh/sh4/fpu/fegetround.c')
-rw-r--r-- | sysdeps/sh/sh4/fpu/fegetround.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/sh/sh4/fpu/fegetround.c b/sysdeps/sh/sh4/fpu/fegetround.c index 7368383114..adaeb8a858 100644 --- a/sysdeps/sh/sh4/fpu/fegetround.c +++ b/sysdeps/sh/sh4/fpu/fegetround.c @@ -28,5 +28,5 @@ fegetround (void) /* Get control word. */ _FPU_GETCW (cw); - return cw & 0x3; + return cw & 0x1; } |