Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / sanitizer_common / TestCases / NetBSD / group_from_gid.cpp
blobeb39da7b2b50434bd4367ae95a861a7cc115d69e
1 // RUN: %clangxx -O0 -g %s -o %t && %run %t
3 #include <grp.h>
4 #include <stdlib.h>
5 #include <string.h>
7 int main(void) {
8 const char *nobody;
10 if (!(nobody = group_from_gid(0, 0)))
11 exit(1);
13 if (strlen(nobody))
14 exit(0);
16 return 0;