repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
compiler-rt
/
test
/
sanitizer_common
/
TestCases
/
NetBSD
/
faccessat.cpp
blob
ae8be1962b8c27900ac235a0b4fc6d0771e8a444
1
// RUN: %clangxx -O0 -g %s -o %t && %run %t
2
3
#include <fcntl.h>
4
#include <unistd.h>
5
6
int
main
(
void
) {
return
faccessat
(
AT_FDCWD
,
"/root"
,
F_OK
,
0
); }