Commit a3458d22 by Uros Bizjak

op-4.h: Update from glibc.

	* soft-fp/op-4.h: Update from glibc.

From-SVN: r205462
parent 35af99b4
2013-11-27 Uros Bizjak <ubizjak@gmail.com>
* soft-fp/op-4.h: Update from glibc.
2013-11-27 Kugan Vivekanandarajah <kuganv@linaro.org> 2013-11-27 Kugan Vivekanandarajah <kuganv@linaro.org>
* libgcc2.c (__udivmoddi4): Define new implementation when * libgcc2.c (__udivmoddi4): Define new implementation when
...@@ -24,7 +28,7 @@ ...@@ -24,7 +28,7 @@
2013-11-22 Yuri Rumyantsev <ysrumyan@gmail.com> 2013-11-22 Yuri Rumyantsev <ysrumyan@gmail.com>
* config/i386/cpuinfo.c (get_intel_cpu): Add Silvermont cases. * config/i386/cpuinfo.c (get_intel_cpu): Add Silvermont cases.
2013-11-18 Jan Hubicka <jh@suse.cz> 2013-11-18 Jan Hubicka <jh@suse.cz>
......
...@@ -709,7 +709,7 @@ ...@@ -709,7 +709,7 @@
else if (rsize <= 2*_FP_W_TYPE_SIZE) \ else if (rsize <= 2*_FP_W_TYPE_SIZE) \
{ \ { \
r = X##_f[1]; \ r = X##_f[1]; \
r <<= _FP_W_TYPE_SIZE; \ r = (rsize <= _FP_W_TYPE_SIZE ? 0 : r << _FP_W_TYPE_SIZE); \
r += X##_f[0]; \ r += X##_f[0]; \
} \ } \
else \ else \
...@@ -717,11 +717,11 @@ ...@@ -717,11 +717,11 @@
/* I'm feeling lazy so we deal with int == 3words (implausible)*/ \ /* I'm feeling lazy so we deal with int == 3words (implausible)*/ \
/* and int == 4words as a single case. */ \ /* and int == 4words as a single case. */ \
r = X##_f[3]; \ r = X##_f[3]; \
r <<= _FP_W_TYPE_SIZE; \ r = (rsize <= _FP_W_TYPE_SIZE ? 0 : r << _FP_W_TYPE_SIZE); \
r += X##_f[2]; \ r += X##_f[2]; \
r <<= _FP_W_TYPE_SIZE; \ r = (rsize <= _FP_W_TYPE_SIZE ? 0 : r << _FP_W_TYPE_SIZE); \
r += X##_f[1]; \ r += X##_f[1]; \
r <<= _FP_W_TYPE_SIZE; \ r = (rsize <= _FP_W_TYPE_SIZE ? 0 : r << _FP_W_TYPE_SIZE); \
r += X##_f[0]; \ r += X##_f[0]; \
} \ } \
} \ } \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment