Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / cstd.m
blob6b81b9013e9da52794cc5d09e7460de7d2251923
1 // RUN: rm -rf %t
2 // RUN: %clang_cc1 -fsyntax-only -internal-isystem %S/Inputs/System/usr/include -fmodules -fimplicit-module-maps -fbuiltin-headers-in-system-modules -fmodules-cache-path=%t -D__need_wint_t -Werror=implicit-function-declaration %s
4 @import uses_other_constants;
5 const double other_value = DBL_MAX;
7 // Supplied by compiler, but referenced from the "/usr/include" module map.
8 @import cstd.float_constants;
10 float getFltMax(void) { return FLT_MAX; }
12 // Supplied by the "/usr/include" module map.
13 @import cstd.stdio;
15 void test_fprintf(FILE *file) {
16   fprintf(file, "Hello, modules\n");
19 // Supplied by compiler, which forwards to the "/usr/include" version.
20 @import cstd.stdint;
22 my_awesome_nonstandard_integer_type value2;
24 // Supplied by the compiler; that version wins.
25 @import cstd.stdbool;
27 #ifndef bool
28 #  error "bool was not defined!"
29 #endif