Fix typo.
authorAnton Korobeynikov <asl@math.spbu.ru>
Fri, 21 Aug 2009 23:09:47 +0000 (23:09 +0000)
committerAnton Korobeynikov <asl@math.spbu.ru>
Fri, 21 Aug 2009 23:09:47 +0000 (23:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79688 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/APFloat.cpp

index 2d8df5eb5832c6caa55cb484ddbb9c9825eeb33b..d50e4e560181f7de33ff27771216094b0f97407a 100644 (file)
@@ -2740,7 +2740,7 @@ APFloat::convertQuadrupleAPFloatToAPInt() const
   words[0] = mysignificand;
   words[1] = ((uint64_t)(sign & 1) << 63) |
              ((myexponent & 0x7fff) << 48) |
-             (mysignificand & 0xffffffffffffLL);
+             (mysignificand2 & 0xffffffffffffLL);
 
   return APInt(128, 2, words);
 }