// RUN: %clang_msan -m64 -O0 %s -o %t && %run %t >%t.out 2>&1 // RUN: %clang_msan -m64 -O1 %s -o %t && %run %t >%t.out 2>&1 // RUN: %clang_msan -m64 -O2 %s -o %t && %run %t >%t.out 2>&1 // RUN: %clang_msan -m64 -O3 %s -o %t && %run %t >%t.out 2>&1 // Test that strdup in C programs is intercepted. // GLibC headers translate strdup to __strdup at -O1 and higher. #include #include int main(int argc, char **argv) { char buf[] = "abc"; char *p = strdup(buf); if (*p) exit(0); return 0; }