Files
clang-p2996/compiler-rt/test/msan/fstat.cpp
Fangrui Song d21b3d346a compiler-rt: Rename .cc file in test/msan to .cpp
Like r367463, but for test/msan.

llvm-svn: 367653
2019-08-02 06:07:05 +00:00

16 lines
215 B
C++

// RUN: %clangxx_msan -O0 %s -o %t && %run %t
#include <sys/stat.h>
#include <stdlib.h>
int main(void) {
struct stat st;
if (fstat(0, &st))
exit(1);
if (S_ISBLK(st.st_mode))
exit(0);
return 0;
}