File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
utils/bazel/llvm-project-overlay/libc Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ add_header_library(
47
47
limits.h
48
48
DEPENDS
49
49
.type_traits
50
+ libc.hdr.limits_macros
50
51
libc.include.llvm-libc-macros.limits_macros
51
52
libc.src.__support.macros.properties.types
52
53
)
Original file line number Diff line number Diff line change 9
9
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_LIMITS_H
10
10
#define LLVM_LIBC_SRC___SUPPORT_CPP_LIMITS_H
11
11
12
- #include " include/llvm-libc-macros/limits-macros .h" // CHAR_BIT
12
+ #include " hdr/limits_macros .h" // CHAR_BIT
13
13
#include " src/__support/CPP/type_traits/is_integral.h"
14
14
#include " src/__support/CPP/type_traits/is_signed.h"
15
- #include " src/__support/macros/attributes.h" // LIBC_INLINE
15
+ #include " src/__support/macros/attributes.h" // LIBC_INLINE
16
16
#include " src/__support/macros/config.h"
17
17
#include " src/__support/macros/properties/types.h" // LIBC_TYPES_HAS_INT128
18
18
Original file line number Diff line number Diff line change @@ -150,6 +150,12 @@ libc_support_library(
150
150
hdrs = ["hdr/stdio_macros.h" ],
151
151
)
152
152
153
+
154
+ libc_support_library (
155
+ name = "hdr_limits_macros" ,
156
+ hdrs = ["hdr/limits_macros.h" ],
157
+ )
158
+
153
159
############################ Type Proxy Header Files ###########################
154
160
155
161
libc_support_library (
@@ -362,7 +368,7 @@ libc_support_library(
362
368
"__support_cpp_type_traits" ,
363
369
"__support_macros_attributes" ,
364
370
":__support_macros_properties_types" ,
365
- ":llvm_libc_macros_limits_macros " ,
371
+ ":hdr_limits_macros " ,
366
372
],
367
373
)
368
374
You can’t perform that action at this time.
0 commit comments