mem-intrinsics-zero-size.c 150 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 // RUN: %clang_hwasan %s -o %t && %run %t #include <string.h> int main() { char a[1]; memset(a, 0, 0); memmove(a, a, 0); memcpy(a, a, 0); }