Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / System / usr / include / module.map
blob1d88ca380f49a50f783a37a9ccee381ece00ba63
1 module cstd [system] {
2   // Only in compiler support directory
3   module float_constants {
4     header "float.h"
5   }
7   // Only in system headers directory
8   module stdio {
9     header "stdio.h"
10   }
12   // In both directories (compiler support version wins, does not forward)
13   module stdbool {
14     header "stdbool.h"
15   }
17   // In both directories (compiler support version wins, forwards)
18   module stdint {
19     header "stdint.h"
20   }
23 module other_constants {
24   explicit module dbl_max {
25     header "dbl_max.h"
26   }
29 module uses_other_constants {
30   header "uses_other_constants.h"
31   export *
34 module Darwin {
35   module C {
36     module excluded {
37       requires excluded
38       header "assert.h"
39     }
40   }
43 module Tcl {
44   module Private {
45     requires excluded
46     umbrella ""
47   }
50 module IOKit {
51   module avc {
52     requires cplusplus
53   }