Author: neil
Date: Fri Oct 12 10:33:27 2007
New Revision: 42910
URL: http://llvm.org/viewvc/llvm-project?rev=42910&view=rev
Log:
If we're trying to be arbitrary precision, unsigned char clearly won't cut it.
Needed for dec->bin conversions.
Modified:
llvm/trunk/lib/Support/APFloat.cpp
Modified: llvm/trunk/lib/Support/APFloat.cpp
URL:
http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/APFloat.cpp?rev=42910&r1=42909&r2=42910&view=diff
==============================================================================
--- llvm/trunk/lib/Support/APFloat.cpp (original)
+++ llvm/trunk/lib/Support/APFloat.cpp Fri Oct 12 10:33:27 2007
@@ -39,7 +39,7 @@
/* Number of bits in the significand. This includes the integer
bit. */
- unsigned char precision;
+ unsigned int precision;
/* If the target format has an implicit integer bit. */
bool implicitIntegerBit;
_______________________________________________
llvm-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits