Displaying 2 results from an estimated 2 matches for "zaffanella".
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: APFloat.patch
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090820/6dde5d03/attachment.ksh>
2009 Aug 20
0
[LLVMdev] Buggy assertion in APFloat::convertFromHexadecimalString
Fixed in r79450, along with an additional one of the same nature.
Thanks,
- Daniel
On Thu, Aug 20, 2009 at 7:42 AM, Enea Zaffanella<zaffanella at cs.unipr.it> wrote:
> 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...