Silence a clang warning by telling it we are only interested in left

shifting the lower 32bits of the floating point value when we demangle it.
This commit is contained in:
Andrew Turner 2013-01-06 00:49:06 +00:00
parent a4244dbff9
commit 955c8cbb49
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=245084

View File

@ -95,7 +95,7 @@ what the endianness of the CPU. VFP is sane.
#define FLOAT64_DEMANGLE(a) (a)
#define FLOAT64_MANGLE(a) (a)
#else
#define FLOAT64_DEMANGLE(a) (((a) << 32) | ((a) >> 32))
#define FLOAT64_DEMANGLE(a) ((((a) & 0xfffffffful) << 32) | ((a) >> 32))
#define FLOAT64_MANGLE(a) FLOAT64_DEMANGLE(a)
#endif
#endif