[llvm-commits] [llvm] r79677 - in /llvm/trunk: include/llvm/ADT/APFloat.h lib/Support/APFloat.cpp

Anton Korobeynikov asl at math.spbu.ru
Fri Aug 21 16:10:56 PDT 2009


Hello, Dale

> Should be mysignificand2.
Oh, right. Fixed, thanks!

> +  words[1] = ((uint64_t)(sign & 1) << 63) |
> +             ((myexponent & 0x7fff) << 48) |
> +             (mysignificand & 0xffffffffffffLL);
>
> Other than that the format appears to match my Sparc book, but I have
> no way to test, do you?
Not yet. However, when I feel bored again and add fp128 stuff to s390x
- it will be used and we'll can test it there.

-- 
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg State University




More information about the llvm-commits mailing list