Fix typo.

llvm-svn: 79688
This commit is contained in:
Anton Korobeynikov 2009-08-21 23:09:47 +00:00
parent 0b8c5ae7af
commit 876955cbb0
1 changed files with 1 additions and 1 deletions

View 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);
}