Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / sanitizer_common / TestCases / NetBSD / faccessat.cpp
blobae8be1962b8c27900ac235a0b4fc6d0771e8a444
1 // RUN: %clangxx -O0 -g %s -o %t && %run %t
3 #include <fcntl.h>
4 #include <unistd.h>
6 int main(void) { return faccessat(AT_FDCWD, "/root", F_OK, 0); }