Displaying 2 results from an estimated 2 matches for "ea6f3561".
Did you mean:
ea4f561
2012 Nov 03
0
[LLVMdev] should asan catch tihs?
...___
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20121103/ea6f3561/attachment.html>
2012 Nov 03
2
[LLVMdev] should asan catch tihs?
Also note that this is not the kind of bug for which asan is good.
If we are dereferencing an uninitialized pointer, there is a high chance
that the program will SEGV w/o any tool.
If we are unlucky and the garbage is accidentally equal to some valid
address, asan will not catch it either.
Valgrind (and work-in-progress MemorySanitizer) will catch this.
--kcc
On Sat, Nov 3, 2012 at 5:38 AM, Eli