@@ -6289,9 +6289,19 @@ ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation
CallLoc,
ImmediateCallVisitor V(getASTContext());
if (!NestedDefaultChecking)
V.TraverseDecl(Param);
-if (V.HasImmediateCalls) {
- ExprEvalContexts.back().DelayedDefaultInitial
@@ -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
@@ -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
@@ -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
@@ -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
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
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
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
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
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-
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
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#
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
@@ -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
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
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
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
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
@@ -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 {
@@ -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/
@@ -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
@@ -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") {
--
@@ -8806,26 +8806,90 @@ static bool MustDelayAttributeArguments(const
ParsedAttr &AL) {
return false;
}
+static bool checkArmNewAttrMutualExclusion(Sema &S, const ParsedAttr &AL,
+ const FunctionProtoType *FPT,
+
@@ -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
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
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
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
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
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 --
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
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
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
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
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.
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
@@ -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
@@ -8,6 +8,7 @@ add_clang_library(clangTidyReadabilityModule
AvoidReturnWithVoidValueCheck.cpp
AvoidUnconditionalPreprocessorIfCheck.cpp
BracesAroundStatementsCheck.cpp
+ ConditionaltostdminmaxCheck.cpp
EugeneZelenko wrote:
I think `ConditionalToStdMinM
@@ -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
@@ -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
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
@@ -62,6 +63,8 @@ namespace readability {
class ReadabilityModule : public ClangTidyModule {
public:
void addCheckFactories(ClangTidyCheckFactories &CheckFactories) override {
+CheckFactories.registerCheck(
+"readability-ConditionalToStdMinMax");
@@ -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
@@ -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
@@ -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
@@ -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;
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
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
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: [
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
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
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
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: [
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: [
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
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.
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: [
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
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
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
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
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: [
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:
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
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
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: [
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
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: [
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:
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: [
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:
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
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
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: [
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
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
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
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
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:
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
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:
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:
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: [
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: [
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
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
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
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
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
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
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:
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
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
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
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
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
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
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][
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 "
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
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
5601 - 5700 of 429937 matches
Mail list logo