Mercurial > hg > CbC > CbC_llvm
view compiler-rt/test/hwasan/TestCases/mem-intrinsics-zero-size.c @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children |
line wrap: on
line source
// 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); }