search for: hex_valu

Displaying 3 results from an estimated 3 matches for "hex_valu".

Did you mean: hex_value
2007 Aug 18
1
[LLVMdev] Soft floating point support
This patch supplies software IEEE floating point support. The comment from the patch reproduced below says all there is to say. This patch contains the prior "cleanup" patch; please don't apply that one. Please let me know of any bugs. It is tested reasonably well, but until I put together random tests it's hard to have 100% confidence. Neil. /* A self-contained host- and
2009 Aug 20
3
[LLVMdev] Buggy assertion in APFloat::convertFromHexadecimalString
Hello. When running clang in Debug mode, I am getting an assertion failure when parsing the following line: float ko = 0x1.1p0; Apparently, the recent changes in the use of StringRef haven't been propagated to all places. Please find attached the trivial patch. Cheers, Enea Zaffanella. -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name:
2009 Aug 20
0
[LLVMdev] Buggy assertion in APFloat::convertFromHexadecimalString
...ers, > Enea Zaffanella. > > > Index: lib/Support/APFloat.cpp > =================================================================== > --- lib/Support/APFloat.cpp     (revision 79510) > +++ lib/Support/APFloat.cpp     (working copy) > @@ -2153,7 +2153,7 @@ >     integerPart hex_value; > >     if(*p == '.') { > -      assert(dot == 0); > +      assert(dot == s.end()); >       dot = p++; >     } > > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu         http://llvm.cs.uiuc.edu &gt...