Skip to content

Commit b30012f

Browse files
committed
Merge branch 'upstream' into x86-fold-trunc-srl-load
2 parents d7e8d5a + 2545209 commit b30012f

File tree

882 files changed

+255866
-7103
lines changed

Some content is hidden

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

882 files changed

+255866
-7103
lines changed

.github/workflows/release-binaries.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,6 @@ jobs:
132132
arches=arm64
133133
else
134134
arches=x86_64
135-
# Disable Flang builds on macOS x86_64. The FortranLower library takes
136-
# 2-3 hours to build on macOS, much slower than on Linux.
137-
# The long build time causes the release build to time out on x86_64,
138-
# so we need to disable flang there.
139-
target_cmake_flags="$target_cmake_flags -DLLVM_RELEASE_ENABLE_PROJECTS='clang;lld;lldb;clang-tools-extra;polly;mlir'"
140135
fi
141136
target_cmake_flags="$target_cmake_flags -DBOOTSTRAP_BOOTSTRAP_DARWIN_osx_ARCHS=$arches -DBOOTSTRAP_BOOTSTRAP_DARWIN_osx_BUILTIN_ARCHS=$arches"
142137
fi

bolt/test/X86/dwarf4-ftypes-dwp-input-dwo-output.test

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# UNSUPPORTED: system-linux
21
; RUN: rm -rf %t
32
; RUN: mkdir %t
43
; RUN: cd %t

clang-tools-extra/clang-tidy/ClangTidyModule.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ class ClangTidyCheckFactories {
8585
/// them a prefixed name.
8686
class ClangTidyModule {
8787
public:
88-
virtual ~ClangTidyModule() {}
88+
virtual ~ClangTidyModule() = default;
8989

9090
/// Implement this function in order to register all \c CheckFactories
9191
/// belonging to this module.

clang-tools-extra/clang-tidy/ClangTidyOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ class ClangTidyOptionsProvider {
171171
static const char OptionsSourceTypeCheckCommandLineOption[];
172172
static const char OptionsSourceTypeConfigCommandLineOption[];
173173

174-
virtual ~ClangTidyOptionsProvider() {}
174+
virtual ~ClangTidyOptionsProvider() = default;
175175

176176
/// Returns global options, which are independent of the file.
177177
virtual const ClangTidyGlobalOptions &getGlobalOptions() = 0;

clang-tools-extra/clang-tidy/ExpandModularHeadersPPCallbacks.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class ExpandModularHeadersPPCallbacks : public PPCallbacks {
4444
ExpandModularHeadersPPCallbacks(
4545
CompilerInstance *CI,
4646
IntrusiveRefCntPtr<llvm::vfs::OverlayFileSystem> OverlayFS);
47-
~ExpandModularHeadersPPCallbacks();
47+
~ExpandModularHeadersPPCallbacks() override;
4848

4949
/// Returns the preprocessor that provides callbacks for the whole
5050
/// translation unit, including the main file, textual headers, and modular

clang-tools-extra/clang-tidy/abseil/DurationAdditionCheck.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ void DurationAdditionCheck::registerMatchers(MatchFinder *Finder) {
2121
Finder->addMatcher(
2222
binaryOperator(hasOperatorName("+"),
2323
hasEitherOperand(expr(ignoringParenImpCasts(
24-
callExpr(callee(functionDecl(TimeConversionFunction())
24+
callExpr(callee(functionDecl(timeConversionFunction())
2525
.bind("function_decl")))
2626
.bind("call")))))
2727
.bind("binop"),

clang-tools-extra/clang-tidy/abseil/DurationComparisonCheck.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace clang::tidy::abseil {
1717

1818
void DurationComparisonCheck::registerMatchers(MatchFinder *Finder) {
1919
auto Matcher = expr(comparisonOperatorWithCallee(functionDecl(
20-
functionDecl(DurationConversionFunction())
20+
functionDecl(durationConversionFunction())
2121
.bind("function_decl"))))
2222
.bind("binop");
2323

clang-tools-extra/clang-tidy/abseil/DurationConversionCastCheck.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace clang::tidy::abseil {
1919

2020
void DurationConversionCastCheck::registerMatchers(MatchFinder *Finder) {
2121
auto CallMatcher = ignoringImpCasts(callExpr(
22-
callee(functionDecl(DurationConversionFunction()).bind("func_decl")),
22+
callee(functionDecl(durationConversionFunction()).bind("func_decl")),
2323
hasArgument(0, expr().bind("arg"))));
2424

2525
Finder->addMatcher(

clang-tools-extra/clang-tidy/abseil/DurationFactoryFloatCheck.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ static bool insideMacroDefinition(const MatchFinder::MatchResult &Result,
2828

2929
void DurationFactoryFloatCheck::registerMatchers(MatchFinder *Finder) {
3030
Finder->addMatcher(
31-
callExpr(callee(functionDecl(DurationFactoryFunction())),
31+
callExpr(callee(functionDecl(durationFactoryFunction())),
3232
hasArgument(0, anyOf(cxxStaticCastExpr(hasDestinationType(
3333
realFloatingPointType())),
3434
cStyleCastExpr(hasDestinationType(

clang-tools-extra/clang-tidy/abseil/DurationFactoryScaleCheck.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ static std::optional<DurationScale> getNewScale(DurationScale OldScale,
112112
void DurationFactoryScaleCheck::registerMatchers(MatchFinder *Finder) {
113113
Finder->addMatcher(
114114
callExpr(
115-
callee(functionDecl(DurationFactoryFunction()).bind("call_decl")),
115+
callee(functionDecl(durationFactoryFunction()).bind("call_decl")),
116116
hasArgument(
117117
0,
118118
ignoringImpCasts(anyOf(

0 commit comments

Comments
 (0)