http://llvm.org/bugs/show_bug.cgi?id=17622
David Majnemer <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution|--- |INVALID --- Comment #2 from David Majnemer <[email protected]> --- There is a bug in your code causing a stack-buffer-overflow. -fsanitize=address would catch this. 'KQkq' requires a character buffer with five bytes because it needs a NULL terminator but cas only holds four bytes. Changing it gives the expected result. -- You are receiving this mail because: You are on the CC list for the bug.
_______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
