Skip to content

Commit 6f2551e

Browse files
committed
Merge branch 'main' into hgh/libcxx/nodiscard-to-any
2 parents 6890692 + 4d97b78 commit 6f2551e

File tree

782 files changed

+93372
-102654
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

782 files changed

+93372
-102654
lines changed

.github/CODEOWNERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,19 @@
6060
/mlir/lib/Conversion/*ToROCDL @krzysz00 @kuhar
6161
/mlir/include/mlir/Dialect/LLVMIR/ROCDL* @krzysz00 @kuhar
6262

63+
# Arith dialect in MLIR.
64+
/mlir/include/mlir/Dialect/Arith @kuhar
65+
/mlir/lib/Dialect/Arith @kuhar
66+
/mlir/lib/Conversion/ArithTo* @kuhar
67+
6368
# XeGPU and XeVM dialects in MLIR.
6469
/mlir/include/mlir/Dialect/XeGPU @charithaintc @Jianhui-Li
6570
/mlir/lib/Dialect/XeGPU @charithaintc @Jianhui-Li
6671
/mlir/lib/Conversion/*XeGPU* @charithaintc @Jianhui-Li
6772
/mlir/include/mlir/Dialect/XeGPU/Transforms @charithaintc @Jianhui-Li
6873
/mlir/lib/Dialect/XeGPU/Transforms @charithaintc @Jianhui-Li
74+
/mlir/include/mlir/Dialect/XeGPU/TransformOps @charithaintc @Jianhui-Li @tkarna
75+
/mlir/lib/Dialect/XeGPU/TransformOps @charithaintc @Jianhui-Li @tkarna
6976
/mlir/include/mlir/Dialect/LLVMIR/XeVM* @silee2
7077
/mlir/lib/Dialect/LLVMIR/IR/XeVM @silee2
7178
/mlir/lib/Conversion/*XeVM* @silee2

.github/workflows/bazel-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2626
- name: Setup Buildifier
2727
run: |
28-
sudo curl -L https://github.com/bazelbuild/buildtools/releases/download/v8.2.1/buildifier-linux-amd64 -o /usr/bin/buildifier
28+
sudo curl -L https://github.com/bazelbuild/buildtools/releases/download/v8.2.1/buildifier-linux-amd64 -o /usr/bin/buildifier --fail
2929
sudo chmod +x /usr/bin/buildifier
3030
- name: Run Buildifier
3131
run: |
@@ -49,7 +49,7 @@ jobs:
4949
run: |
5050
sudo apt-get update
5151
sudo apt-get install -y libmpfr-dev libpfm4-dev m4 libedit-dev
52-
sudo curl -L https://github.com/bazelbuild/bazelisk/releases/download/v1.27.0/bazelisk-amd64.deb > /tmp/bazelisk.deb
52+
sudo curl -L https://github.com/bazelbuild/bazelisk/releases/download/v1.27.0/bazelisk-amd64.deb --fail > /tmp/bazelisk.deb
5353
sudo apt-get install -y /tmp/bazelisk.deb
5454
rm /tmp/bazelisk.deb
5555
- name: Build/Test

clang-tools-extra/clang-doc/BitcodeReader.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
//===----------------------------------------------------------------------===//
88

99
#include "BitcodeReader.h"
10-
#include "llvm/ADT/IndexedMap.h"
1110
#include "llvm/Support/Error.h"
1211
#include "llvm/Support/TimeProfiler.h"
1312
#include "llvm/Support/raw_ostream.h"

clang-tools-extra/clang-doc/BitcodeReader.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717

1818
#include "BitcodeWriter.h"
1919
#include "Representation.h"
20-
#include "clang/AST/AST.h"
21-
#include "llvm/ADT/SmallVector.h"
2220
#include "llvm/Bitstream/BitstreamReader.h"
2321
#include "llvm/Support/Error.h"
2422
#include <optional>

clang-tools-extra/clang-doc/BitcodeWriter.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,8 @@
1616
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_DOC_BITCODEWRITER_H
1717

1818
#include "Representation.h"
19-
#include "clang/AST/AST.h"
2019
#include "llvm/ADT/DenseMap.h"
21-
#include "llvm/ADT/SmallVector.h"
22-
#include "llvm/ADT/StringRef.h"
2320
#include "llvm/Bitstream/BitstreamWriter.h"
24-
#include <initializer_list>
2521
#include <vector>
2622

2723
namespace clang {

clang-tools-extra/clang-doc/ClangDoc.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,9 @@
1515
#include "ClangDoc.h"
1616
#include "Mapper.h"
1717
#include "Representation.h"
18-
#include "clang/AST/AST.h"
1918
#include "clang/AST/ASTConsumer.h"
20-
#include "clang/AST/ASTContext.h"
21-
#include "clang/AST/RecursiveASTVisitor.h"
2219
#include "clang/Frontend/ASTConsumers.h"
2320
#include "clang/Frontend/CompilerInstance.h"
24-
#include "clang/Frontend/FrontendActions.h"
2521

2622
namespace clang {
2723
namespace doc {

clang-tools-extra/clang-doc/ClangDoc.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_DOC_CLANGDOC_H
1818

1919
#include "Representation.h"
20-
#include "clang/Tooling/Execution.h"
21-
#include "clang/Tooling/StandaloneExecution.h"
2220
#include "clang/Tooling/Tooling.h"
2321

2422
namespace clang {

clang-tools-extra/clang-doc/Mapper.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
#include "Representation.h"
2121
#include "clang/AST/RecursiveASTVisitor.h"
22-
#include "clang/Tooling/Execution.h"
2322

2423
using namespace clang::comments;
2524
using namespace clang::tooling;

clang-tools-extra/clang-doc/Representation.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,8 @@
1616

1717
#include "clang/AST/Type.h"
1818
#include "clang/Basic/Specifiers.h"
19-
#include "clang/Tooling/StandaloneExecution.h"
20-
#include "llvm/ADT/APSInt.h"
19+
#include "clang/Tooling/Execution.h"
2120
#include "llvm/ADT/SmallVector.h"
22-
#include "llvm/ADT/StringExtras.h"
2321
#include <array>
2422
#include <optional>
2523
#include <string>

clang-tools-extra/clang-doc/Serialize.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111

1212
#include "clang/AST/Attr.h"
1313
#include "clang/AST/Comment.h"
14+
#include "clang/AST/CommentVisitor.h"
1415
#include "clang/AST/DeclFriend.h"
16+
#include "clang/AST/ExprConcepts.h"
1517
#include "clang/AST/Mangle.h"
1618
#include "clang/Index/USRGeneration.h"
1719
#include "clang/Lex/Lexer.h"

0 commit comments

Comments
 (0)