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

Dale Johannesen dalej at apple.com
Fri Aug 21 16:01:30 PDT 2009


Should be mysignificand2.

+  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?




More information about the llvm-commits mailing list