Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / asan / TestCases / Linux / textdomain.c
blob9e249d95ce674e0ae50003613732173698ec2601
1 // RUN: %clang_asan -O0 -g %s -o %t
2 // RUN: %env_asan_opts=strict_string_checks=1 %run %t
4 // Android NDK does not have libintl.h
5 // UNSUPPORTED: android
7 #include <stdlib.h>
8 #include <libintl.h>
10 int main() {
11 textdomain(NULL);
12 return 0;