[clang] [Clang] Implement P2718R0 "Lifetime extension in range-based for loops" (PR #76361)

2024-01-11 Thread via cfe-commits
@@ -6289,9 +6289,19 @@ ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc, ImmediateCallVisitor V(getASTContext()); if (!NestedDefaultChecking) V.TraverseDecl(Param); -if (V.HasImmediateCalls) { - ExprEvalContexts.back().DelayedDefaultInitial

[clang] [Clang] Implement P2718R0 "Lifetime extension in range-based for loops" (PR #76361)

2024-01-11 Thread via cfe-commits
@@ -6305,6 +6315,10 @@ ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc, if (Res.isInvalid()) return ExprError(); Init = Res.get(); + + // Collect MaterializeTemporaryExprs in the rewrited CXXDefaultArgExpr. yronglin wrot

[clang] [Clang] Implement P2718R0 "Lifetime extension in range-based for loops" (PR #76361)

2024-01-11 Thread via cfe-commits
@@ -8244,11 +8229,33 @@ ExprResult Sema::IgnoredValueConversions(Expr *E) { // If the expression is a prvalue after this optional conversion, the // temporary materialization conversion is applied. // -// We skip this step: IR generation is able to synthesiz

[clang] [Clang] Implement P2718R0 "Lifetime extension in range-based for loops" (PR #76361)

2024-01-11 Thread via cfe-commits
@@ -2539,6 +2539,12 @@ StmtResult Sema::ActOnCXXForRangeStmt(Scope *S, SourceLocation ForLoc, return StmtError(); } + if (getLangOpts().CPlusPlus23) { +auto Entity = InitializedEntity::InitializeVariable(RangeVar); yronglin wrote: I use`Initialize

[clang] [Clang] Implement P2718R0 "Lifetime extension in range-based for loops" (PR #76361)

2024-01-11 Thread via cfe-commits
@@ -2783,6 +2789,7 @@ StmtResult Sema::BuildCXXForRangeStmt(SourceLocation ForLoc, LoopVar->setType(SubstAutoTypeDependent(LoopVar->getType())); } } else if (!BeginDeclStmt.get()) { + yronglin wrote: removed https://github.com/llvm/llvm-project/p

[clang] [Clang] Implement P2718R0 "Lifetime extension in range-based for loops" (PR #76361)

2024-01-11 Thread via cfe-commits
yronglin wrote: Add `ReleaseNotes`. https://github.com/llvm/llvm-project/pull/76361 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang][Modules] Make `Module::Requirement` a struct (PR #67900)

2024-01-11 Thread via cfe-commits
cor3ntin wrote: @davidstone ping https://github.com/llvm/llvm-project/pull/67900 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang][Sema] Emit more specific diagnostic for auto in lambda before C++14 (#46059) (PR #68540)

2024-01-11 Thread via cfe-commits
cor3ntin wrote: @shafik ping https://github.com/llvm/llvm-project/pull/68540 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang][ASTMatcher] Add matchers for CXXFoldExpr (PR #71245)

2024-01-11 Thread via cfe-commits
cor3ntin wrote: @5chmidti do you need us to merge that for you? https://github.com/llvm/llvm-project/pull/71245 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[llvm] [clang] [Clang] Make sdot builtins available to SME (PR #77792)

2024-01-11 Thread via cfe-commits
llvmbot wrote: @llvm/pr-subscribers-clang Author: Sander de Smalen (sdesmalen-arm) Changes See the specification for more details: * https://github.com/ARM-software/acle/blob/main/main/acle.md#udot-sdot-fdot-vectors * https://github.com/ARM-software/acle/blob/main/main/acle.md#udot-sdot-

[clang] fc6faa1 - [CloneFunction][DebugInfo] Avoid cloning DILocalVariables of inlined functions (#75385)

2024-01-11 Thread via cfe-commits
Author: Vladislav Dzhidzhoev Date: 2024-01-11T17:08:12+01:00 New Revision: fc6faa1113e9069f41b5500db051210af0eea843 URL: https://github.com/llvm/llvm-project/commit/fc6faa1113e9069f41b5500db051210af0eea843 DIFF: https://github.com/llvm/llvm-project/commit/fc6faa1113e9069f41b5500db051210af0eea84

[clang] [llvm] [Clang] Make sdot builtins available to SME (PR #77792)

2024-01-11 Thread via cfe-commits
llvmbot wrote: @llvm/pr-subscribers-backend-aarch64 Author: Sander de Smalen (sdesmalen-arm) Changes See the specification for more details: * https://github.com/ARM-software/acle/blob/main/main/acle.md#udot-sdot-fdot-vectors * https://github.com/ARM-software/acle/blob/main/main/acle.md#

[mlir] [clang] [clang-tools-extra] [flang] [libcxx] [openmp] [llvm] [libc] [libcxxabi] [compiler-rt] [clang] Avoid -Wshadow warning when init-capture named same as class field (PR #74512)

2024-01-11 Thread via cfe-commits
cor3ntin wrote: @philnik777 I agree strongly with @Fznamznon. If `this` is not captured there is no actual shadowing in that they do not occupy encompassing scope, and so removing one declaration would not give you access to the other variable. > Should we still emit shadowing warning in case

[llvm] [flang] [openmp] [compiler-rt] [mlir] [lld] [clang] [libunwind] [lldb] [clang-tools-extra] [BranchFolding] Fix missing predecessors of landing-pad (PR #77608)

2024-01-11 Thread via cfe-commits
@@ -0,0 +1,80 @@ +; RUN: llc -mtriple=x86_64-pc-windows-msvc %s dyung wrote: Thanks, that worked, although I did need to manually delete the .s file on the buildbot because the file was generated in the source tree which is not normally cleaned between runs. Bu

[llvm] [clang] [AMDGPU] Add GFX12 WMMA and SWMMAC instructions (PR #77795)

2024-01-11 Thread via cfe-commits
llvmbot wrote: @llvm/pr-subscribers-llvm-ir @llvm/pr-subscribers-backend-amdgpu @llvm/pr-subscribers-clang-codegen Author: Mirko Brkušanin (mbrkusanin) Changes --- Patch is 1002.09 KiB, truncated to 20.00 KiB below, full version: https://github.com/llvm/llvm-project/pull/77795.diff 6

[llvm] [clang] [AMDGPU] Add GFX12 WMMA and SWMMAC instructions (PR #77795)

2024-01-11 Thread via cfe-commits
llvmbot wrote: @llvm/pr-subscribers-mc Author: Mirko Brkušanin (mbrkusanin) Changes --- Patch is 1002.09 KiB, truncated to 20.00 KiB below, full version: https://github.com/llvm/llvm-project/pull/77795.diff 62 Files Affected: - (modified) clang/include/clang/Basic/BuiltinsAMDGPU.def

[clang] [Clang][AArch64] Change SME attributes for shared/new/preserved state. (PR #76971)

2024-01-11 Thread via cfe-commits
https://github.com/rsandifo-arm commented: Thanks for the update, looks great to me. The only substantive comment I have is that I think a given keyword attribute must always take `(` and `)` or never take them. It shouldn't be optional, because that risks creating parsing ambiguities, or at

[clang] [Clang][AArch64] Change SME attributes for shared/new/preserved state. (PR #76971)

2024-01-11 Thread via cfe-commits
https://github.com/rsandifo-arm edited https://github.com/llvm/llvm-project/pull/76971 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Clang][AArch64] Change SME attributes for shared/new/preserved state. (PR #76971)

2024-01-11 Thread via cfe-commits
@@ -30,7 +30,7 @@ // CPP-CHECK-NEXT:tail call void @llvm.aarch64.sme.write.ver.vg2.nxv16i8(i32 0, i32 [[BASE:%.*]], [[TMP0]], [[TMP1]]) // CPP-CHECK-NEXT:ret void // -void test_svwrite_ver_za8_u8_vg2(uint32_t base, svuint8x2_t val) __arm_streaming __arm_shared_za {

[clang] [Clang][AArch64] Change SME attributes for shared/new/preserved state. (PR #76971)

2024-01-11 Thread via cfe-commits
@@ -255,6 +255,22 @@ class AttributeCommonInfo { return SpellingIndex != SpellingNotCalculated; } }; + +enum class KeywordAttributeParseArgumentsKind { None, Optional, Required }; rsandifo-arm wrote: I think this must fundamentally be a boolean required/

[clang] [Clang][AArch64] Change SME attributes for shared/new/preserved state. (PR #76971)

2024-01-11 Thread via cfe-commits
@@ -6898,13 +6941,18 @@ at the end of the function. }]; } -def ArmSmeNewZADocs : Documentation { +def ArmNewDocs : Documentation { let Category = DocCatArmSmeAttributes; let Content = [{ -The ``__arm_new_za`` keyword applies to function declarations and specifies -that

[clang] [Clang][AArch64] Change SME attributes for shared/new/preserved state. (PR #76971)

2024-01-11 Thread via cfe-commits
@@ -66,7 +66,7 @@ void test_svzero_mask_za_2(void) __arm_shared_za { // CHECK-CXX-NEXT:tail call void @llvm.aarch64.sme.zero(i32 255) // CHECK-CXX-NEXT:ret void // -void test_svzero_za(void) __arm_shared_za { +void test_svzero_za(void) __arm_inout("za") { --

[clang] [Clang][AArch64] Change SME attributes for shared/new/preserved state. (PR #76971)

2024-01-11 Thread via cfe-commits
@@ -8806,26 +8806,90 @@ static bool MustDelayAttributeArguments(const ParsedAttr &AL) { return false; } +static bool checkArmNewAttrMutualExclusion(Sema &S, const ParsedAttr &AL, + const FunctionProtoType *FPT, +

[clang] [Clang][AArch64] Change SME attributes for shared/new/preserved state. (PR #76971)

2024-01-11 Thread via cfe-commits
@@ -1,60 +1,60 @@ // RUN: %clang_cc1 -fsyntax-only -triple aarch64-none-linux-gnu -target-feature +sme -verify=expected,notc2x -Wno-strict-prototypes %s // RUN: %clang_cc1 -fsyntax-only -triple aarch64-none-linux-gnu -target-feature +sme -verify=expected,c2x %s -enum __arm_s

[clang] [llvm] [AArch64] Add soft-float ABI (PR #74460)

2024-01-11 Thread via cfe-commits
https://github.com/ostannard updated https://github.com/llvm/llvm-project/pull/74460 >From 890f12e20ebfb7b4ab188f9fa8a46fe262a20783 Mon Sep 17 00:00:00 2001 From: Oliver Stannard Date: Fri, 1 Dec 2023 10:06:57 + Subject: [PATCH 1/8] [AArch64] Split feature tests for FP and SIMD AArch64Targ

[clang] 923f039 - [OpenACC] Implement 'copy' Clause

2024-01-11 Thread via cfe-commits
Author: erichkeane Date: 2024-01-11T08:58:07-08:00 New Revision: 923f0392bf050e2e17caa93778e90cf429905694 URL: https://github.com/llvm/llvm-project/commit/923f0392bf050e2e17caa93778e90cf429905694 DIFF: https://github.com/llvm/llvm-project/commit/923f0392bf050e2e17caa93778e90cf429905694.diff LO

[clang] [ObjC]: Make type encoding safe in symbol names (PR #77797)

2024-01-11 Thread via cfe-commits
llvmbot wrote: @llvm/pr-subscribers-clang-codegen Author: Frederik Carlier (qmfrederik) Changes Type encodings are part of symbol names in the Objective C ABI. Replace characters which are reseved in symbol names: - ELF: avoid including '@' characters in type encodings - Windows: avoid

[clang] [ObjC]: Make type encoding safe in symbol names (PR #77797)

2024-01-11 Thread via cfe-commits
llvmbot wrote: @llvm/pr-subscribers-clang Author: Frederik Carlier (qmfrederik) Changes Type encodings are part of symbol names in the Objective C ABI. Replace characters which are reseved in symbol names: - ELF: avoid including '@' characters in type encodings - Windows: avoid includin

[clang] [ObjC]: Make type encoding safe in symbol names (PR #77797)

2024-01-11 Thread via cfe-commits
github-actions[bot] wrote: :warning: C/C++ code formatter, clang-format found issues in your code. :warning: You can test this locally with the following command: ``bash git-clang-format --diff 6a075a9d5dda8f6ce37b176c6d4a7f87a770ec31 5511454cae83ed61062c49a19c56edaf6b9ee1dd --

[clang] [libunwind] [llvm] [lld] [flang] [libc] [mlir] [libcxx] [lldb] [compiler-rt] [libcxxabi] [clang-tools-extra] [clang] static operators should evaluate object argument (PR #68485)

2024-01-11 Thread via cfe-commits
https://github.com/cor3ntin approved this pull request. LGTM @erichkeane you want to look at that? https://github.com/llvm/llvm-project/pull/68485 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/c

[clang] dd5ce45 - [OpenACC] Implement 'use_device' clause parsing

2024-01-11 Thread via cfe-commits
Author: erichkeane Date: 2024-01-11T09:34:08-08:00 New Revision: dd5ce4572fb90323799f1bdf585c01d08613e277 URL: https://github.com/llvm/llvm-project/commit/dd5ce4572fb90323799f1bdf585c01d08613e277 DIFF: https://github.com/llvm/llvm-project/commit/dd5ce4572fb90323799f1bdf585c01d08613e277.diff LO

[clang] [llvm] CMake: Detect properly new linker introduced in Xcode 15 (PR #77806)

2024-01-11 Thread via cfe-commits
github-actions[bot] wrote: Thank you for submitting a Pull Request (PR) to the LLVM Project! This PR will be automatically labeled and the relevant teams will be notified. If you wish to, you can add reviewers by using the "Reviewers" section on this page. If this is not working for you, it i

[clang] [llvm] CMake: Detect properly new linker introduced in Xcode 15 (PR #77806)

2024-01-11 Thread via cfe-commits
llvmbot wrote: @llvm/pr-subscribers-clang Author: Eric Miotto (edymtt) Changes [This linker](https://developer.apple.com/documentation/xcode-release-notes/xcode-15-release-notes#Linking) is functionally equivalent to the classic one (`ld64`) for build system purposes -- in particular to

[clang-tools-extra] Add clang-tidy check to suggest replacement of conditional statement with std::min/std::max (PR #77816)

2024-01-11 Thread via cfe-commits
llvmbot wrote: @llvm/pr-subscribers-clang-tidy Author: Bhuminjay Soni (11happy) Changes **Overview:** This pull request fixes #64914 where author suggests adding a readability check to propose the replacement of conditional statements with std::min/std::max for improved code readability.

[clang-tools-extra] Add clang-tidy check to suggest replacement of conditional statement with std::min/std::max (PR #77816)

2024-01-11 Thread via cfe-commits
https://github.com/EugeneZelenko edited https://github.com/llvm/llvm-project/pull/77816 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] Add clang-tidy check to suggest replacement of conditional statement with std::min/std::max (PR #77816)

2024-01-11 Thread via cfe-commits
@@ -0,0 +1,88 @@ +//===--- ConditionaltostdminmaxCheck.cpp - clang-tidy -===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apa

[clang-tools-extra] Add clang-tidy check to suggest replacement of conditional statement with std::min/std::max (PR #77816)

2024-01-11 Thread via cfe-commits
@@ -8,6 +8,7 @@ add_clang_library(clangTidyReadabilityModule AvoidReturnWithVoidValueCheck.cpp AvoidUnconditionalPreprocessorIfCheck.cpp BracesAroundStatementsCheck.cpp + ConditionaltostdminmaxCheck.cpp EugeneZelenko wrote: I think `ConditionalToStdMinM

[clang-tools-extra] Add clang-tidy check to suggest replacement of conditional statement with std::min/std::max (PR #77816)

2024-01-11 Thread via cfe-commits
@@ -0,0 +1,29 @@ +.. title:: clang-tidy - readability-ConditionalToStdMinMax + +readability-ConditionalToStdMinMax +== + +Replaces certain conditional statements with equivalent std::min or std::max expressions, EugeneZelenko wrot

[clang-tools-extra] Add clang-tidy check to suggest replacement of conditional statement with std::min/std::max (PR #77816)

2024-01-11 Thread via cfe-commits
@@ -0,0 +1,32 @@ +//===--- ConditionaltostdminmaxCheck.h - clang-tidy -*- C++ -*-===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apa

[clang-tools-extra] Add clang-tidy check to suggest replacement of conditional statement with std::min/std::max (PR #77816)

2024-01-11 Thread via cfe-commits
https://github.com/EugeneZelenko commented: Check should also add #include if it's not included already. https://github.com/llvm/llvm-project/pull/77816 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/lis

[clang-tools-extra] Add clang-tidy check to suggest replacement of conditional statement with std::min/std::max (PR #77816)

2024-01-11 Thread via cfe-commits
@@ -62,6 +63,8 @@ namespace readability { class ReadabilityModule : public ClangTidyModule { public: void addCheckFactories(ClangTidyCheckFactories &CheckFactories) override { +CheckFactories.registerCheck( +"readability-ConditionalToStdMinMax");

[clang-tools-extra] Add clang-tidy check to suggest replacement of conditional statement with std::min/std::max (PR #77816)

2024-01-11 Thread via cfe-commits
@@ -0,0 +1,32 @@ +//===--- ConditionaltostdminmaxCheck.h - clang-tidy -*- C++ -*-===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apa

[clang-tools-extra] Add clang-tidy check to suggest replacement of conditional statement with std::min/std::max (PR #77816)

2024-01-11 Thread via cfe-commits
@@ -224,6 +224,12 @@ New checks Recommends the smallest possible underlying type for an ``enum`` or ``enum`` class based on the range of its enumerators. +- New :doc:`readability-ConditionalToStdMinMax + ` check. + + Replaces certain conditional statements with equivalen

[clang-tools-extra] Add clang-tidy check to suggest replacement of conditional statement with std::min/std::max (PR #77816)

2024-01-11 Thread via cfe-commits
@@ -0,0 +1,29 @@ +.. title:: clang-tidy - readability-ConditionalToStdMinMax + +readability-ConditionalToStdMinMax +== + +Replaces certain conditional statements with equivalent std::min or std::max expressions, +improving readability and promotin

[clang-tools-extra] Add clang-tidy check to suggest replacement of conditional statement with std::min/std::max (PR #77816)

2024-01-11 Thread via cfe-commits
@@ -0,0 +1,27 @@ +// RUN: %check_clang_tidy %s readability-ConditionalToStdMinMax %t + +void foo() { + int value1,value2; + + // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: use std::max instead of < [readability-ConditionalToStdMinMax] + if (value1 < value2) +value1 = value2;

[clang] 0cc3157 - [clang-format] TableGen keywords support. (#77477)

2024-01-11 Thread via cfe-commits
Author: Hirofumi Nakamura Date: 2024-01-11T20:07:49+01:00 New Revision: 0cc31579e0b690e974163da4077a40b49bfc1ebc URL: https://github.com/llvm/llvm-project/commit/0cc31579e0b690e974163da4077a40b49bfc1ebc DIFF: https://github.com/llvm/llvm-project/commit/0cc31579e0b690e974163da4077a40b49bfc1ebc.d

[clang] 282059b - Update LibASTImporter.rst

2022-06-26 Thread via cfe-commits
Author: Shivam Date: 2022-06-26T19:22:52+05:30 New Revision: 282059b44d003a3e044bdc5c8884797f92bf2eab URL: https://github.com/llvm/llvm-project/commit/282059b44d003a3e044bdc5c8884797f92bf2eab DIFF: https://github.com/llvm/llvm-project/commit/282059b44d003a3e044bdc5c8884797f92bf2eab.diff LOG: U

[clang] 664ce34 - [clang-format] Quit analyzing solution space for large state count

2022-06-26 Thread via cfe-commits
Author: owenca Date: 2022-06-26T13:15:07-07:00 New Revision: 664ce34e81d98af7859754f127b28030b45c8893 URL: https://github.com/llvm/llvm-project/commit/664ce34e81d98af7859754f127b28030b45c8893 DIFF: https://github.com/llvm/llvm-project/commit/664ce34e81d98af7859754f127b28030b45c8893.diff LOG: [

[clang] 141ad3b - [clang-format] Fix uninitialized memory problem

2022-06-26 Thread via cfe-commits
Author: sstwcw Date: 2022-06-26T22:23:50Z New Revision: 141ad3ba05711cc8396a34fce6b26648d216eb8e URL: https://github.com/llvm/llvm-project/commit/141ad3ba05711cc8396a34fce6b26648d216eb8e DIFF: https://github.com/llvm/llvm-project/commit/141ad3ba05711cc8396a34fce6b26648d216eb8e.diff LOG: [clang

[clang] b646f09 - [clang-format] Fix misplacement of `*` in declaration of pointer to struct

2022-06-29 Thread via cfe-commits
Author: Huang Zhen-Hong Date: 2022-06-29T15:21:02+08:00 New Revision: b646f0955574c6ad4c156c9db522e46f597cfda9 URL: https://github.com/llvm/llvm-project/commit/b646f0955574c6ad4c156c9db522e46f597cfda9 DIFF: https://github.com/llvm/llvm-project/commit/b646f0955574c6ad4c156c9db522e46f597cfda9.dif

[clang] 9d2e830 - [analyzer] Fix BindingDecl evaluation for reference types

2022-06-29 Thread via cfe-commits
Author: isuckatcs Date: 2022-06-29T13:01:19+02:00 New Revision: 9d2e830737bcf8035cf263e4b4cb279b7b07cf24 URL: https://github.com/llvm/llvm-project/commit/9d2e830737bcf8035cf263e4b4cb279b7b07cf24 DIFF: https://github.com/llvm/llvm-project/commit/9d2e830737bcf8035cf263e4b4cb279b7b07cf24.diff LOG

[clang] cc55d97 - [clang-format] Run dump_format_style.py for LK_Verilog

2022-07-01 Thread via cfe-commits
Author: owenca Date: 2022-07-01T19:01:09-07:00 New Revision: cc55d97cebf22994663c514d0b909df63bfbac43 URL: https://github.com/llvm/llvm-project/commit/cc55d97cebf22994663c514d0b909df63bfbac43 DIFF: https://github.com/llvm/llvm-project/commit/cc55d97cebf22994663c514d0b909df63bfbac43.diff LOG: [

[clang] 40d2ef8 - [clang-format][NFC] Replace an EXPECT_EQ with a verifyFormat

2022-07-01 Thread via cfe-commits
Author: owenca Date: 2022-07-01T21:20:54-07:00 New Revision: 40d2ef841b68f6b493ce88bd750a92105a2b567d URL: https://github.com/llvm/llvm-project/commit/40d2ef841b68f6b493ce88bd750a92105a2b567d DIFF: https://github.com/llvm/llvm-project/commit/40d2ef841b68f6b493ce88bd750a92105a2b567d.diff LOG: [

[clang-tools-extra] a65a3bf - [clang-tidy] Don't treat invalid branches as identical

2022-07-03 Thread via cfe-commits
Author: Ishaan Gandhi Date: 2022-07-03T15:50:33-06:00 New Revision: a65a3bffd31f57243929b0f50abbd90bd626faee URL: https://github.com/llvm/llvm-project/commit/a65a3bffd31f57243929b0f50abbd90bd626faee DIFF: https://github.com/llvm/llvm-project/commit/a65a3bffd31f57243929b0f50abbd90bd626faee.diff

[clang-tools-extra] f7a80c3 - [clang-tidy] Properly forward clang-tidy output when running tests

2022-07-03 Thread via cfe-commits
Author: Nicolas van Kempen Date: 2022-07-03T16:30:17-06:00 New Revision: f7a80c3d08d4821e621fc88d6a2e435291f82dff URL: https://github.com/llvm/llvm-project/commit/f7a80c3d08d4821e621fc88d6a2e435291f82dff DIFF: https://github.com/llvm/llvm-project/commit/f7a80c3d08d4821e621fc88d6a2e435291f82dff.

[clang] 47bdf53 - [clang-format] Break on AfterColon only if not followed by comment

2022-07-04 Thread via cfe-commits
Author: owenca Date: 2022-07-04T12:34:19-07:00 New Revision: 47bdf53a5dbaf16e1080d1cad8f3cc67edaad960 URL: https://github.com/llvm/llvm-project/commit/47bdf53a5dbaf16e1080d1cad8f3cc67edaad960 DIFF: https://github.com/llvm/llvm-project/commit/47bdf53a5dbaf16e1080d1cad8f3cc67edaad960.diff LOG: [

[clang] 98c6a3c - [NFC][ASTImporter] remove the unnecessary condition checks in ASTImporter.cpp

2022-07-04 Thread via cfe-commits
Author: phyBrackets Date: 2022-07-05T08:12:01+05:30 New Revision: 98c6a3c0c2209dd7bdb15fe6c91c507c16990bcf URL: https://github.com/llvm/llvm-project/commit/98c6a3c0c2209dd7bdb15fe6c91c507c16990bcf DIFF: https://github.com/llvm/llvm-project/commit/98c6a3c0c2209dd7bdb15fe6c91c507c16990bcf.diff L

[clang-tools-extra] 7a55021 - [clang-tidy] Fix confusable identifiers interaction with DeclContext

2022-07-04 Thread via cfe-commits
Author: serge-sans-paille Date: 2022-07-05T08:56:26+02:00 New Revision: 7a550212e8ff5552b0bd10d0c1af459a55c36234 URL: https://github.com/llvm/llvm-project/commit/7a550212e8ff5552b0bd10d0c1af459a55c36234 DIFF: https://github.com/llvm/llvm-project/commit/7a550212e8ff5552b0bd10d0c1af459a55c36234.d

[clang-tools-extra] 3897d3c - [clang-tidy] By-pass portability issues in confusable-identifiers test

2022-07-05 Thread via cfe-commits
Author: serge-sans-paille Date: 2022-07-05T12:36:00+02:00 New Revision: 3897d3cf71efa50da755e2fc3514b6c2bd4f1433 URL: https://github.com/llvm/llvm-project/commit/3897d3cf71efa50da755e2fc3514b6c2bd4f1433 DIFF: https://github.com/llvm/llvm-project/commit/3897d3cf71efa50da755e2fc3514b6c2bd4f1433.d

[clang-tools-extra] 011d2bf - [clang-tidy] Fix confusable identifier interaction with unavailable class def

2022-07-06 Thread via cfe-commits
Author: serge-sans-paille Date: 2022-07-07T08:02:29+02:00 New Revision: 011d2bf86487520c3515f16e0b1d32994bf2b48f URL: https://github.com/llvm/llvm-project/commit/011d2bf86487520c3515f16e0b1d32994bf2b48f DIFF: https://github.com/llvm/llvm-project/commit/011d2bf86487520c3515f16e0b1d32994bf2b48f.d

[clang] c84d29a - [clang-format][NFC] Clean up IndentForLevel in LevelIndentTracker

2022-07-07 Thread via cfe-commits
Author: owenca Date: 2022-07-07T15:33:09-07:00 New Revision: c84d29acbfa671b4a7fb24764cbd4bfa5f6aad5c URL: https://github.com/llvm/llvm-project/commit/c84d29acbfa671b4a7fb24764cbd4bfa5f6aad5c DIFF: https://github.com/llvm/llvm-project/commit/c84d29acbfa671b4a7fb24764cbd4bfa5f6aad5c.diff LOG: [

[clang] eb1ffd8 - Update references to Discourse instead of the mailing lists.

2022-07-08 Thread via cfe-commits
Author: tlattner Date: 2022-07-08T11:16:47-07:00 New Revision: eb1ffd817c3ce5120c3f9d4152de65954314a8d5 URL: https://github.com/llvm/llvm-project/commit/eb1ffd817c3ce5120c3f9d4152de65954314a8d5 DIFF: https://github.com/llvm/llvm-project/commit/eb1ffd817c3ce5120c3f9d4152de65954314a8d5.diff LOG:

[clang] 22c7a6d - [objcxx] Fix `std::addressof` for `id`.

2022-07-08 Thread via cfe-commits
Author: zoecarver Date: 2022-07-08T11:29:30-07:00 New Revision: 22c7a6ec6d62e627ca66b886b60ba1ce1e7c URL: https://github.com/llvm/llvm-project/commit/22c7a6ec6d62e627ca66b886b60ba1ce1e7c DIFF: https://github.com/llvm/llvm-project/commit/22c7a6ec6d62e627ca66b886b60ba1ce1e7c.diff LOG

[clang] cc5b772 - [clang] Introduce -Warray-parameter

2022-07-08 Thread via cfe-commits
Author: serge-sans-paille Date: 2022-07-08T22:36:05+02:00 New Revision: cc5b77273af3705b6f5cf574567b49d5158bb3a9 URL: https://github.com/llvm/llvm-project/commit/cc5b77273af3705b6f5cf574567b49d5158bb3a9 DIFF: https://github.com/llvm/llvm-project/commit/cc5b77273af3705b6f5cf574567b49d5158bb3a9.d

[clang] 615f838 - [clang-format] Fix an assertion failure on -lines=0:n

2022-07-08 Thread via cfe-commits
Author: owenca Date: 2022-07-08T23:41:16-07:00 New Revision: 615f838f7380e6a4f3df8e16f04dea3c8eed656c URL: https://github.com/llvm/llvm-project/commit/615f838f7380e6a4f3df8e16f04dea3c8eed656c DIFF: https://github.com/llvm/llvm-project/commit/615f838f7380e6a4f3df8e16f04dea3c8eed656c.diff LOG: [

[clang] da6a14b - [clang] Enforce instantiation of constexpr template functions during non-constexpr evaluation

2022-07-09 Thread via cfe-commits
Author: serge-sans-paille Date: 2022-07-10T08:40:03+02:00 New Revision: da6a14b91ad999327b41a9040577273591e4ad1d URL: https://github.com/llvm/llvm-project/commit/da6a14b91ad999327b41a9040577273591e4ad1d DIFF: https://github.com/llvm/llvm-project/commit/da6a14b91ad999327b41a9040577273591e4ad1d.d

[clang] f74413d - [clang-format] Fix invalid code generation with comments in lambda

2022-03-23 Thread via cfe-commits
Author: owenca Date: 2022-03-23T19:40:24-07:00 New Revision: f74413d16345c8815c7d1e4676d6aaf732517b8d URL: https://github.com/llvm/llvm-project/commit/f74413d16345c8815c7d1e4676d6aaf732517b8d DIFF: https://github.com/llvm/llvm-project/commit/f74413d16345c8815c7d1e4676d6aaf732517b8d.diff LOG: [

[clang-tools-extra] 39b80c8 - [clang-tidy] Add modernize-macro-to-enum check

2022-03-25 Thread via cfe-commits
Author: Richard Date: 2022-03-25T09:45:55-06:00 New Revision: 39b80c8380c86539de391600efaa17184b5a52b4 URL: https://github.com/llvm/llvm-project/commit/39b80c8380c86539de391600efaa17184b5a52b4 DIFF: https://github.com/llvm/llvm-project/commit/39b80c8380c86539de391600efaa17184b5a52b4.diff LOG:

[clang] eee536d - [clang-format] Don't format qualifiers in PPDirective

2022-03-28 Thread via cfe-commits
Author: owenca Date: 2022-03-28T14:28:14-07:00 New Revision: eee536dd31859058dba8a0d17d3b5f61d530d3bc URL: https://github.com/llvm/llvm-project/commit/eee536dd31859058dba8a0d17d3b5f61d530d3bc DIFF: https://github.com/llvm/llvm-project/commit/eee536dd31859058dba8a0d17d3b5f61d530d3bc.diff LOG: [

[clang] a590040 - [RISCV][test] Make PATH empty when testing --gcc-toolchain is multilib_riscv_elf_sdk

2022-03-28 Thread via cfe-commits
Author: luxufan Date: 2022-03-29T14:51:23+08:00 New Revision: a5900401b1475cdf98dbd210ac4bc362563cebbf URL: https://github.com/llvm/llvm-project/commit/a5900401b1475cdf98dbd210ac4bc362563cebbf DIFF: https://github.com/llvm/llvm-project/commit/a5900401b1475cdf98dbd210ac4bc362563cebbf.diff LOG:

[clang] f5c6667 - [doc] Rely on tblgen to dump supported options value when generating doc

2022-03-29 Thread via cfe-commits
Author: serge-sans-paille Date: 2022-03-29T12:25:33+02:00 New Revision: f5c666742f7bb4ae79ec79c8acf61dced4d37cc9 URL: https://github.com/llvm/llvm-project/commit/f5c666742f7bb4ae79ec79c8acf61dced4d37cc9 DIFF: https://github.com/llvm/llvm-project/commit/f5c666742f7bb4ae79ec79c8acf61dced4d37cc9.d

[clang] fe8b223 - [analyzer] Fix "RhsLoc and LhsLoc bitwidth must be same"

2022-03-29 Thread via cfe-commits
Author: Vince Bridgers Date: 2022-03-29T17:08:19-05:00 New Revision: fe8b2236ef9cf873875135dcc41364911898698d URL: https://github.com/llvm/llvm-project/commit/fe8b2236ef9cf873875135dcc41364911898698d DIFF: https://github.com/llvm/llvm-project/commit/fe8b2236ef9cf873875135dcc41364911898698d.diff

[clang] cebbfd3 - [RISCV] Add index check for vset/vget

2022-03-30 Thread via cfe-commits
Author: wangpc Date: 2022-03-30T19:29:13+08:00 New Revision: cebbfd3d22b48cb3681a326bcbd23aaca1ec URL: https://github.com/llvm/llvm-project/commit/cebbfd3d22b48cb3681a326bcbd23aaca1ec DIFF: https://github.com/llvm/llvm-project/commit/cebbfd3d22b48cb3681a326bcbd23aaca1ec.diff LOG: [

[clang] f6740fe - [clang-format] Indent import statements in JavaScript.

2022-03-30 Thread via cfe-commits
Author: sstwcw Date: 2022-03-30T23:17:27Z New Revision: f6740fe483e9fa0c76aa9f176ff68f51f47a1302 URL: https://github.com/llvm/llvm-project/commit/f6740fe483e9fa0c76aa9f176ff68f51f47a1302 DIFF: https://github.com/llvm/llvm-project/commit/f6740fe483e9fa0c76aa9f176ff68f51f47a1302.diff LOG: [clang

[clang] 907d3ac - [Clang][CodeGen]Beautify dump format, add indent for nested struct and struct members

2022-03-30 Thread via cfe-commits
Author: wangyihan Date: 2022-03-31T07:38:37+08:00 New Revision: 907d3acefc3bdd6eb83f21589c6473ca7e88b3eb URL: https://github.com/llvm/llvm-project/commit/907d3acefc3bdd6eb83f21589c6473ca7e88b3eb DIFF: https://github.com/llvm/llvm-project/commit/907d3acefc3bdd6eb83f21589c6473ca7e88b3eb.diff LOG

[clang] 4d5b824 - [analyzer] Avoid checking addrspace pointers in cstring checker

2022-03-31 Thread via cfe-commits
Author: Vince Bridgers Date: 2022-03-31T17:34:56+02:00 New Revision: 4d5b824e3df21c9cfa7a14ea746c83d0d41dd3ed URL: https://github.com/llvm/llvm-project/commit/4d5b824e3df21c9cfa7a14ea746c83d0d41dd3ed DIFF: https://github.com/llvm/llvm-project/commit/4d5b824e3df21c9cfa7a14ea746c83d0d41dd3ed.diff

[clang] 83bde93 - resolve typo in the manual.

2022-03-31 Thread via cfe-commits
Author: Shivam Date: 2022-04-01T03:15:17+05:30 New Revision: 83bde93cef369f85ea0adc25a4cf2349ea65bb3a URL: https://github.com/llvm/llvm-project/commit/83bde93cef369f85ea0adc25a4cf2349ea65bb3a DIFF: https://github.com/llvm/llvm-project/commit/83bde93cef369f85ea0adc25a4cf2349ea65bb3a.diff LOG: r

[clang-tools-extra] f547fc8 - [clang-tidy] Add modernize-macro-to-enum check

2022-04-01 Thread via cfe-commits
Author: Richard Date: 2022-04-01T15:24:21-06:00 New Revision: f547fc89c0730e0fee220d790957791bdfd23fcd URL: https://github.com/llvm/llvm-project/commit/f547fc89c0730e0fee220d790957791bdfd23fcd DIFF: https://github.com/llvm/llvm-project/commit/f547fc89c0730e0fee220d790957791bdfd23fcd.diff LOG:

[clang] 979d876 - [X86][AMX] enable amx cast intrinsics in FE.

2022-04-01 Thread via cfe-commits
Author: Luo, Yuanke Date: 2022-04-02T14:02:35+08:00 New Revision: 979d876bb4e93db1be50360a4941b83319d4e114 URL: https://github.com/llvm/llvm-project/commit/979d876bb4e93db1be50360a4941b83319d4e114 DIFF: https://github.com/llvm/llvm-project/commit/979d876bb4e93db1be50360a4941b83319d4e114.diff L

[clang] b93893e - [AArch64] Default HBC/MOPS features in clang

2022-04-02 Thread via cfe-commits
Author: tyb0807 Date: 2022-04-02T14:51:23+01:00 New Revision: b93893e60f0c860e5814cea6cc285c8e89e035af URL: https://github.com/llvm/llvm-project/commit/b93893e60f0c860e5814cea6cc285c8e89e035af DIFF: https://github.com/llvm/llvm-project/commit/b93893e60f0c860e5814cea6cc285c8e89e035af.diff LOG:

[clang] 9a015ee - [AArch64] Avoid scanning feature list for target parsing

2022-04-02 Thread via cfe-commits
Author: tyb0807 Date: 2022-04-02T14:51:23+01:00 New Revision: 9a015ee1f948755d69dc2ff52e7655229e2eed47 URL: https://github.com/llvm/llvm-project/commit/9a015ee1f948755d69dc2ff52e7655229e2eed47 DIFF: https://github.com/llvm/llvm-project/commit/9a015ee1f948755d69dc2ff52e7655229e2eed47.diff LOG:

[clang] 357afd9 - [clang-format] Pass return code of git-clang-format by sys.exit()

2022-04-05 Thread via cfe-commits
Author: owenca Date: 2022-04-05T09:52:01-07:00 New Revision: 357afd952852db0be3f690f8b647bd4b02f38cad URL: https://github.com/llvm/llvm-project/commit/357afd952852db0be3f690f8b647bd4b02f38cad DIFF: https://github.com/llvm/llvm-project/commit/357afd952852db0be3f690f8b647bd4b02f38cad.diff LOG: [

[clang] 0ffb3dd - [clang-format] Fix a hang when formatting C# $@ string literals

2022-07-25 Thread via cfe-commits
Author: owenca Date: 2022-07-25T23:17:54-07:00 New Revision: 0ffb3dd33ee1a50a6ab5db80bb8caee9133e66dc URL: https://github.com/llvm/llvm-project/commit/0ffb3dd33ee1a50a6ab5db80bb8caee9133e66dc DIFF: https://github.com/llvm/llvm-project/commit/0ffb3dd33ee1a50a6ab5db80bb8caee9133e66dc.diff LOG: [

[clang] 8a13326 - [analyzer] ArrayInitLoopExpr with array of non-POD type

2022-07-26 Thread via cfe-commits
Author: isuckatcs Date: 2022-07-26T09:07:22+02:00 New Revision: 8a13326d184c2829a51d7c00f467ded06412f858 URL: https://github.com/llvm/llvm-project/commit/8a13326d184c2829a51d7c00f467ded06412f858 DIFF: https://github.com/llvm/llvm-project/commit/8a13326d184c2829a51d7c00f467ded06412f858.diff LOG

[clang] 996b092 - [analyzer] Lambda capture non-POD type array

2022-07-26 Thread via cfe-commits
Author: isuckatcs Date: 2022-07-26T09:40:25+02:00 New Revision: 996b092c5e170786572e925345e502e5376feaee URL: https://github.com/llvm/llvm-project/commit/996b092c5e170786572e925345e502e5376feaee DIFF: https://github.com/llvm/llvm-project/commit/996b092c5e170786572e925345e502e5376feaee.diff LOG

[clang] a618d5e - [analyzer] Structured binding to tuple-like types

2022-07-26 Thread via cfe-commits
Author: isuckatcs Date: 2022-07-26T10:24:29+02:00 New Revision: a618d5e0dd5d6fee5d73e823dbf8301663be0b4f URL: https://github.com/llvm/llvm-project/commit/a618d5e0dd5d6fee5d73e823dbf8301663be0b4f DIFF: https://github.com/llvm/llvm-project/commit/a618d5e0dd5d6fee5d73e823dbf8301663be0b4f.diff LOG

[clang] 4638d7a - Revert "[clang-offload-bundler] Library-ize ClangOffloadBundler"

2022-07-26 Thread via cfe-commits
Author: Lambert, Jacob Date: 2022-07-26T11:22:31-07:00 New Revision: 4638d7a28f62d2869a7394b009439a72c04c5b72 URL: https://github.com/llvm/llvm-project/commit/4638d7a28f62d2869a7394b009439a72c04c5b72 DIFF: https://github.com/llvm/llvm-project/commit/4638d7a28f62d2869a7394b009439a72c04c5b72.diff

[clang] 1f8ae9d - Inline function calls.

2022-07-26 Thread via cfe-commits
Author: Weverything Date: 2022-07-26T21:12:28-07:00 New Revision: 1f8ae9d7e7e4afcc4e76728b28e64941660ca3eb URL: https://github.com/llvm/llvm-project/commit/1f8ae9d7e7e4afcc4e76728b28e64941660ca3eb DIFF: https://github.com/llvm/llvm-project/commit/1f8ae9d7e7e4afcc4e76728b28e64941660ca3eb.diff L

[clang] f9a2f6b - [clang-format] Fix the return code of git-clang-format

2022-07-27 Thread via cfe-commits
Author: Sridhar Gopinath Date: 2022-07-27T21:01:24-07:00 New Revision: f9a2f6b6aecf0dd2b484d99458c99f799caee584 URL: https://github.com/llvm/llvm-project/commit/f9a2f6b6aecf0dd2b484d99458c99f799caee584 DIFF: https://github.com/llvm/llvm-project/commit/f9a2f6b6aecf0dd2b484d99458c99f799caee584.di

[libunwind] 520d29f - Update references to mailing lists that have moved to Discourse.

2022-07-28 Thread via cfe-commits
Author: tlattner Date: 2022-07-28T16:54:58-07:00 New Revision: 520d29f38108e60bff3f10ffec9443745e3217c5 URL: https://github.com/llvm/llvm-project/commit/520d29f38108e60bff3f10ffec9443745e3217c5 DIFF: https://github.com/llvm/llvm-project/commit/520d29f38108e60bff3f10ffec9443745e3217c5.diff LOG:

[clang] f93182a - [clang-format] Handle Verilog numbers and operators

2022-07-28 Thread via cfe-commits
Author: sstwcw Date: 2022-07-29T00:38:29Z New Revision: f93182a887889828fc6c963174afd7d7b3625e5a URL: https://github.com/llvm/llvm-project/commit/f93182a887889828fc6c963174afd7d7b3625e5a DIFF: https://github.com/llvm/llvm-project/commit/f93182a887889828fc6c963174afd7d7b3625e5a.diff LOG: [clang

[clang] 67480b3 - [clang-format] Handle Verilog blocks

2022-07-28 Thread via cfe-commits
Author: sstwcw Date: 2022-07-29T00:38:30Z New Revision: 67480b360ca0dcc33fe3126d0602b3d358dfbc6f URL: https://github.com/llvm/llvm-project/commit/67480b360ca0dcc33fe3126d0602b3d358dfbc6f DIFF: https://github.com/llvm/llvm-project/commit/67480b360ca0dcc33fe3126d0602b3d358dfbc6f.diff LOG: [clang

[clang] b67ee18 - [clang-format] Handle Verilog user-defined primitives

2022-07-28 Thread via cfe-commits
Author: sstwcw Date: 2022-07-29T00:38:30Z New Revision: b67ee18e85f30334792e33a71c883fcfdcb83436 URL: https://github.com/llvm/llvm-project/commit/b67ee18e85f30334792e33a71c883fcfdcb83436 DIFF: https://github.com/llvm/llvm-project/commit/b67ee18e85f30334792e33a71c883fcfdcb83436.diff LOG: [clang

[clang] 6db0c18 - [clang-format] Handle Verilog modules

2022-07-28 Thread via cfe-commits
Author: sstwcw Date: 2022-07-29T00:38:30Z New Revision: 6db0c18b1af653f33dd4629d6155f6cf334a975e URL: https://github.com/llvm/llvm-project/commit/6db0c18b1af653f33dd4629d6155f6cf334a975e DIFF: https://github.com/llvm/llvm-project/commit/6db0c18b1af653f33dd4629d6155f6cf334a975e.diff LOG: [clang

[clang] c887194 - [clang-format] Handle Verilog case statements

2022-07-28 Thread via cfe-commits
Author: sstwcw Date: 2022-07-29T00:38:30Z New Revision: c88719483c69f7f34be4487f6623b06c37475e5a URL: https://github.com/llvm/llvm-project/commit/c88719483c69f7f34be4487f6623b06c37475e5a DIFF: https://github.com/llvm/llvm-project/commit/c88719483c69f7f34be4487f6623b06c37475e5a.diff LOG: [clang

[clang] 60e1206 - [clang-format] Handle Verilog attributes

2022-07-28 Thread via cfe-commits
Author: sstwcw Date: 2022-07-29T00:38:30Z New Revision: 60e12068ffeb96aa4e56c8dcff3442e516b27ab6 URL: https://github.com/llvm/llvm-project/commit/60e12068ffeb96aa4e56c8dcff3442e516b27ab6 DIFF: https://github.com/llvm/llvm-project/commit/60e12068ffeb96aa4e56c8dcff3442e516b27ab6.diff LOG: [clang

[clang] a35c64c - [Clang][Attribute] Introduce maybe_undef attribute for function arguments which accepts undef values

2022-07-28 Thread via cfe-commits
Author: skc7 Date: 2022-07-29T02:27:26Z New Revision: a35c64ce23b7c7e4972c89b224b9363639dddea2 URL: https://github.com/llvm/llvm-project/commit/a35c64ce23b7c7e4972c89b224b9363639dddea2 DIFF: https://github.com/llvm/llvm-project/commit/a35c64ce23b7c7e4972c89b224b9363639dddea2.diff LOG: [Clang][

[clang] 09c4121 - Revert "Revert "[Clang][Attribute] Introduce maybe_undef attribute for function arguments which accepts undef values""

2022-07-29 Thread via cfe-commits
Author: skc7 Date: 2022-07-29T19:07:07Z New Revision: 09c41211231578765cdb296bda3b4c7f3c22b4ba URL: https://github.com/llvm/llvm-project/commit/09c41211231578765cdb296bda3b4c7f3c22b4ba DIFF: https://github.com/llvm/llvm-project/commit/09c41211231578765cdb296bda3b4c7f3c22b4ba.diff LOG: Revert "

[clang] fb7fa27 - Preserve qualifiers when getting fully qualified type

2022-07-29 Thread via cfe-commits
Author: Weverything Date: 2022-07-29T19:42:54-07:00 New Revision: fb7fa27f92caf10315d3fb7def99affb71b4fe44 URL: https://github.com/llvm/llvm-project/commit/fb7fa27f92caf10315d3fb7def99affb71b4fe44 DIFF: https://github.com/llvm/llvm-project/commit/fb7fa27f92caf10315d3fb7def99affb71b4fe44.diff L

[clang] 168d4e2 - Handles failing driver tests of clang

2022-08-02 Thread via cfe-commits
Author: Purva-Chaudhari Date: 2022-08-02T12:29:26+05:30 New Revision: 168d4e2945a9d3ba2aa88aad65e0a15bddcf7e58 URL: https://github.com/llvm/llvm-project/commit/168d4e2945a9d3ba2aa88aad65e0a15bddcf7e58 DIFF: https://github.com/llvm/llvm-project/commit/168d4e2945a9d3ba2aa88aad65e0a15bddcf7e58.dif

<    52   53   54   55   56   57   58   59   60   61   >