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
/
asan
/
TestCases
/
Linux
/
textdomain.c
blob
9e249d95ce674e0ae50003613732173698ec2601
1
// RUN: %clang_asan -O0 -g %s -o %t
2
// RUN: %env_asan_opts=strict_string_checks=1 %run %t
3
4
// Android NDK does not have libintl.h
5
// UNSUPPORTED: android
6
7
#include <stdlib.h>
8
#include <libintl.h>
9
10
int
main
() {
11
textdomain
(
NULL
);
12
return
0
;
13
}