Displaying 2 results from an estimated 2 matches for "818f64d6".
2009 Sep 24
0
[LLVMdev] MemoryBuffer
...p - '0');
// Without.
while (p != e && '0' <= *p && *p <= '9')
n = n * 10 + (*p - '0');
— Gordon
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090924/818f64d6/attachment.html>
2009 Sep 24
7
[LLVMdev] MemoryBuffer
I was writing something using MemoryBuffer, and while looking through
its code I came across line 59:
assert(BufEnd[0] == 0 && "Buffer is not null terminated!");
I am curious if the MemoryBuffer only supports non-binary, non-null
embedded files, or if it supports binary as well. I do not see
anything inherently not expecting binary files except for that one
line, so I am