rengolin added inline comments.

================
Comment at: lib/builtins/floatuntitf.c:73
+    long_double_bits fb;
+    fb.u.high.all = (du_int)(e + 16383) << 48            /* exponent */
+                  | ((a >> 64) & 0x0000ffffffffffffLL);  /* mantissa */
----------------
mgorny wrote:
> rengolin wrote:
> > nit: an hexadecimal pattern here would be clearer. same above.
> Do you mean something like: `(foo << 48) & 0xffff....`?
No, just the `16383` to `0x3FFF`


https://reviews.llvm.org/D27898



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to