Skip to content

Commit a1ab9fb

Browse files
authored
Merge branch 'main' into T187681160-split-lambda
2 parents 9c0b34b + 9da0871 commit a1ab9fb

File tree

4 files changed

+3
-8
lines changed

4 files changed

+3
-8
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ clang/test/AST/Interp/ @tbaederr
8686
/mlir/**/*VectorToLLVM* @banach-space @dcaballe @nicolasvasilache
8787
/mlir/**/*X86Vector* @aartbik @dcaballe @nicolasvasilache
8888
/mlir/include/mlir/Dialect/Vector @banach-space @dcaballe @nicolasvasilache
89+
/mlir/include/mlir/Dialect/Vector/IR @kuhar
8990
/mlir/lib/Dialect/Vector @banach-space @dcaballe @nicolasvasilache
9091
/mlir/lib/Dialect/Vector/Transforms/* @banach-space @dcaballe @hanhanW @nicolasvasilache
9192
/mlir/lib/Dialect/Vector/Transforms/VectorEmulateNarrowType.cpp @banach-space @dcaballe @MaheshRavishankar @nicolasvasilache

libc/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ if(LIBC_BUILD_GPU_LOADER OR (LLVM_LIBC_GPU_BUILD AND NOT LLVM_RUNTIMES_BUILD))
7373
add_subdirectory(utils/gpu)
7474
endif()
7575

76-
option(LIBC_USE_NEW_HEADER_GEN "Generate header files using new headergen instead of the old one" OFF)
76+
option(LIBC_USE_NEW_HEADER_GEN "Generate header files using new headergen instead of the old one" ON)
7777

7878
set(NEED_LIBC_HDRGEN FALSE)
7979
if(NOT LLVM_RUNTIMES_BUILD)

libc/src/__support/threads/thread.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include "src/__support/macros/config.h"
2323
#include "src/__support/macros/properties/architectures.h"
2424

25+
// TODO: fix this unguarded linux dep
2526
#include <linux/param.h> // for exec_pagesize.
2627

2728
#include <stddef.h> // For size_t

libc/src/math/generic/expm1.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,6 @@
3030
#define LIBC_MATH_EXPM1_SKIP_ACCURATE_PASS
3131
#endif
3232

33-
// #define DEBUGDEBUG
34-
35-
#ifdef DEBUGDEBUG
36-
#include <iomanip>
37-
#include <iostream>
38-
#endif
39-
4033
namespace LIBC_NAMESPACE_DECL {
4134

4235
using fputil::DoubleDouble;

0 commit comments

Comments
 (0)