Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / sanitizer_common / TestCases / Posix / access.cpp
blob8623645f8bdfa5369a6d8c067134be11850b68d5
1 // RUN: %clangxx -O0 -g %s -o %t && %run %t
3 #include <unistd.h>
5 int main(void) { return access("/dev/null", F_OK); }