blob: 5ff2139760350cc7f62952aca7f33b92f50d1953 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
module __compiler_builtins [system] {
explicit module float_constants {
header "float.h"
}
explicit module iso646 {
header "iso646.h"
}
explicit module limits {
header "limits.h"
}
explicit module stdalign {
header "stdalign.h"
}
explicit module stdarg {
header "stdarg.h"
}
explicit module stdbool {
header "stdbool.h"
}
explicit module stddef {
header "stddef.h"
}
explicit module stdint {
header "stdint.h"
}
explicit module tgmath {
header "tgmath.h"
}
// FIXME: add various altivec, *intrin headers.
}
|