llvmbot wrote:
@llvm/pr-subscribers-clang-driver
Author: Tom Eccles (tblah)
Changes
This reverts commit caba0314cf631a3ba3e982cbcdc455224046c7a8.
Serious performance regressions were reported by @vzakhari
https://github.com/llvm/llvm-project/issues/58303#issuecomment-1830754173
Fixing t
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Tom Eccles (tblah)
Changes
This reverts commit caba0314cf631a3ba3e982cbcdc455224046c7a8.
Serious performance regressions were reported by @vzakhari
https://github.com/llvm/llvm-project/issues/58303#issuecomment-1830754173
Fixing this doe
https://github.com/cor3ntin updated
https://github.com/llvm/llvm-project/pull/73103
>From 4709819fb2e7f45f9429f1a7fc79923abf0f9691 Mon Sep 17 00:00:00 2001
From: Corentin Jabot
Date: Wed, 22 Nov 2023 11:43:07 +0100
Subject: [PATCH 1/3] [Clang] Implement P2308R1 - Template Parameter
Initializat
https://github.com/cor3ntin edited
https://github.com/llvm/llvm-project/pull/73103
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/cor3ntin edited
https://github.com/llvm/llvm-project/pull/73103
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: Tom Eccles
Date: 2023-11-29T17:10:18Z
New Revision: 5ce5ea3786246815ce4913dcf8020bde976d2c95
URL:
https://github.com/llvm/llvm-project/commit/5ce5ea3786246815ce4913dcf8020bde976d2c95
DIFF:
https://github.com/llvm/llvm-project/commit/5ce5ea3786246815ce4913dcf8020bde976d2c95.diff
LOG: Re
https://github.com/cor3ntin edited
https://github.com/llvm/llvm-project/pull/73103
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/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 1a041a3ad8a0104da70202e68256513de8848dbf
b9c630a58fa5ea843c24ad6175a444b8795e9ba2 --
Author: Chris B
Date: 2023-11-29T11:25:02-06:00
New Revision: 2630d72cb343fed771e505c1bb0e4f334aed66ce
URL:
https://github.com/llvm/llvm-project/commit/2630d72cb343fed771e505c1bb0e4f334aed66ce
DIFF:
https://github.com/llvm/llvm-project/commit/2630d72cb343fed771e505c1bb0e4f334aed66ce.diff
LOG:
https://github.com/cor3ntin updated
https://github.com/llvm/llvm-project/pull/73103
>From 4709819fb2e7f45f9429f1a7fc79923abf0f9691 Mon Sep 17 00:00:00 2001
From: Corentin Jabot
Date: Wed, 22 Nov 2023 11:43:07 +0100
Subject: [PATCH 1/4] [Clang] Implement P2308R1 - Template Parameter
Initializat
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Sebastian Poeplau (sebastianpoeplau)
Changes
When removing a source range from the RewriterBuffer, Clang needs to compute
the size of the actual range in the RewriterBuffer (as new elements may have
been inserted at any position of the or
elizabethandrews wrote:
> I requested some minor changes.
>
> Can we document the `.ifunc` symbols as a deprecated feature? With this
> change, they will never be referenced except by code compiled by older
> compiler versions. Maybe plan to deprecate them a year from now?
How/where do I docu
llvmbot wrote:
@llvm/pr-subscribers-pgo
@llvm/pr-subscribers-llvm-transforms
Author: David Li (david-xl)
Changes
Update the user manual to provide guidance on the usage for different flavors
of instrumentations.
---
Full diff: https://github.com/llvm/llvm-project/pull/73845.diff
2 File
@@ -4114,8 +4114,26 @@ void CodeGenModule::emitMultiVersionFunctions() {
}
llvm::Constant *ResolverConstant = GetOrCreateMultiVersionResolver(GD);
-if (auto *IFunc = dyn_cast(ResolverConstant))
+if (auto *IFunc = dyn_cast(ResolverConstant)) {
ResolverCon
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Craig Topper (topperc)
Changes
Use ArrayRef to avoid a vector copy.
Replace a push_back loop with a call to std::vector::insert.
---
Full diff: https://github.com/llvm/llvm-project/pull/73851.diff
1 Files Affected:
- (modified) clang/li
Author: cor3ntin
Date: 2023-11-29T21:27:17+01:00
New Revision: 1cbd52f791d3f088246526c0801634edb65cee31
URL:
https://github.com/llvm/llvm-project/commit/1cbd52f791d3f088246526c0801634edb65cee31
DIFF:
https://github.com/llvm/llvm-project/commit/1cbd52f791d3f088246526c0801634edb65cee31.diff
LOG:
https://github.com/cor3ntin closed
https://github.com/llvm/llvm-project/pull/73105
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -6226,6 +6226,15 @@ ExprResult Sema::CheckConvertedConstantExpression(Expr
*From, QualType T,
return R;
}
+ExprResult Sema::EvaluateConvertedConstantExpression(Expr *E, QualType T,
+ APValue &Value,
+
Author: Owen Pan
Date: 2023-11-29T12:52:01-08:00
New Revision: 4c1745207665262380e9bff65201816a966339d0
URL:
https://github.com/llvm/llvm-project/commit/4c1745207665262380e9bff65201816a966339d0
DIFF:
https://github.com/llvm/llvm-project/commit/4c1745207665262380e9bff65201816a966339d0.diff
LOG:
Author: Owen Pan
Date: 2023-11-29T12:56:05-08:00
New Revision: bbae59ae71c73e26809d4ab7da1a80239ebd9381
URL:
https://github.com/llvm/llvm-project/commit/bbae59ae71c73e26809d4ab7da1a80239ebd9381
DIFF:
https://github.com/llvm/llvm-project/commit/bbae59ae71c73e26809d4ab7da1a80239ebd9381.diff
LOG:
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 4c1745207665262380e9bff65201816a966339d0
f23461ad86202ae37947c5ad1099e301b23b3589 --
Author: Craig Topper
Date: 2023-11-29T12:57:48-08:00
New Revision: 0123608822a7b58d6deca528eef8dc958420acd1
URL:
https://github.com/llvm/llvm-project/commit/0123608822a7b58d6deca528eef8dc958420acd1
DIFF:
https://github.com/llvm/llvm-project/commit/0123608822a7b58d6deca528eef8dc958420acd1.diff
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Ivan R. Ivanov (ivanradanov)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/73856.diff
1 Files Affected:
- (modified) clang/lib/CodeGen/CGOpenMPRuntime.cpp (+1)
``diff
diff --git a/clang/lib/CodeGen/CGOpenM
llvmbot wrote:
@llvm/pr-subscribers-clang-codegen
Author: Ivan R. Ivanov (ivanradanov)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/73856.diff
1 Files Affected:
- (modified) clang/lib/CodeGen/CGOpenMPRuntime.cpp (+1)
``diff
diff --git a/clang/lib/CodeGen
https://github.com/lwshanbd created
https://github.com/llvm/llvm-project/pull/73861
Fix #69214.
In `emitOMPSimdRegion`, the `EmitOMPPrivateLoopCounters` should be after
`EmitOMPPrivateClause`.
>From 9eb00076c22197f223649b420994176a170a2671 Mon Sep 17 00:00:00 2001
From: Baodi Shan
Date: Wed,
https://github.com/cor3ntin updated
https://github.com/llvm/llvm-project/pull/73103
>From 074d18d3805b067a5442bea94816d01319a29083 Mon Sep 17 00:00:00 2001
From: Corentin Jabot
Date: Wed, 22 Nov 2023 11:43:07 +0100
Subject: [PATCH 1/5] [Clang] Implement P2308R1 - Template Parameter
Initializat
dyung wrote:
@cor3ntin Your commit seems to be causing 2 test failures in the
clang-tools-extra tests, can you try to fix them or revert if you need time to
investigate?
https://lab.llvm.org/buildbot/#/builders/139/builds/54467
https://github.com/llvm/llvm-project/pull/73105
_
Author: Johannes Doerfert
Date: 2023-11-29T14:49:13-08:00
New Revision: fae233c63f93b4b6f9693685abe6c7d24393682f
URL:
https://github.com/llvm/llvm-project/commit/fae233c63f93b4b6f9693685abe6c7d24393682f
DIFF:
https://github.com/llvm/llvm-project/commit/fae233c63f93b4b6f9693685abe6c7d24393682f.d
cor3ntin wrote:
@PiotrZSL You beat me to it, thanks a lot!
https://github.com/llvm/llvm-project/pull/73105
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: Brendan Dahl
Date: 2023-11-29T15:13:30-08:00
New Revision: c6d70722b49db01914d5f64cc86ea5ed609ad9fd
URL:
https://github.com/llvm/llvm-project/commit/c6d70722b49db01914d5f64cc86ea5ed609ad9fd
DIFF:
https://github.com/llvm/llvm-project/commit/c6d70722b49db01914d5f64cc86ea5ed609ad9fd.diff
@@ -286,7 +286,33 @@
clang::analyze_format_string::ParseLengthModifier(FormatSpecifier &FS,
lmKind = LengthModifier::AsInt3264;
break;
case 'w':
- lmKind = LengthModifier::AsWide; ++I; break;
+ ++I;
+ if (I == E) return false;
+ if (*I == 'f
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Vlad Serebrennikov (Endilll)
Changes
This patch converts (almost) every expected directive in
`test/CXX/drs/dr0xx.cpp` into either `@-1` form (when directive immediately
follow the line diagnostic is pointing out to), or `@#` form
https://github.com/ZijunZhaoCCK updated
https://github.com/llvm/llvm-project/pull/71771
>From 06c4cf02dfb4b20c8349c5f3c7209276f6d56edf Mon Sep 17 00:00:00 2001
From: zijunzhao
Date: Thu, 9 Nov 2023 02:21:46 +
Subject: [PATCH 1/3] Fix clang to recognize new C23 modifiers %w and %wf when
pri
llvmbot wrote:
@llvm/pr-subscribers-clang-format
Author: Emilia Kond (rymiel)
Changes
PR #69473 introduced skipping PP directives when determining the brace
kind of an lbrace. However, it did so by skipping to the end of the line when
encountering a hash character. This means it also ski
Author: Heejin Ahn
Date: 2023-11-29T18:03:58-08:00
New Revision: e88a2f123fa4843ae3782377668cf5741acc9121
URL:
https://github.com/llvm/llvm-project/commit/e88a2f123fa4843ae3782377668cf5741acc9121
DIFF:
https://github.com/llvm/llvm-project/commit/e88a2f123fa4843ae3782377668cf5741acc9121.diff
LO
ronlieb wrote:
> performance degradation observed for this patch on trunk build : hpc2021 8
> mpi210's reference run 518.tealeaf 10.8% 534.hpgmg 7.3%
both of these benchmarks which exhibited performance regressions, contain
reductions.
https://github.com/llvm/llvm-project/pull/70401
_
Author: Jacob Lambert
Date: 2023-11-29T18:39:17-08:00
New Revision: 3cf190974a37d18c7bd6f52b9588f4104e8e96f0
URL:
https://github.com/llvm/llvm-project/commit/3cf190974a37d18c7bd6f52b9588f4104e8e96f0
DIFF:
https://github.com/llvm/llvm-project/commit/3cf190974a37d18c7bd6f52b9588f4104e8e96f0.diff
Author: Shafik Yaghmour
Date: 2023-11-29T21:03:32-08:00
New Revision: 0233a1306b240850cbf9f4783a20c36f967d9697
URL:
https://github.com/llvm/llvm-project/commit/0233a1306b240850cbf9f4783a20c36f967d9697
DIFF:
https://github.com/llvm/llvm-project/commit/0233a1306b240850cbf9f4783a20c36f967d9697.dif
https://github.com/wangleiat approved this pull request.
LGTM
https://github.com/llvm/llvm-project/pull/72514
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: Lu Weining
Date: 2023-11-30T14:08:45+08:00
New Revision: 1296d20adfb0978afe38d67efab9818079d870ca
URL:
https://github.com/llvm/llvm-project/commit/1296d20adfb0978afe38d67efab9818079d870ca
DIFF:
https://github.com/llvm/llvm-project/commit/1296d20adfb0978afe38d67efab9818079d870ca.diff
LO
https://github.com/W-50243 updated
https://github.com/llvm/llvm-project/pull/73200
>From ebc84bed665494dde9dbef956a0383ff79cb3d0c Mon Sep 17 00:00:00 2001
From: W-50243
Date: Thu, 23 Nov 2023 11:02:24 +0800
Subject: [PATCH] [FIX] Fix the function isctype failed in arm64-big-endian
---
libcxx/
https://github.com/cor3ntin updated
https://github.com/llvm/llvm-project/pull/73463
>From af4176fba7e7b6e45ddd5b7730c7b1c2cbd69537 Mon Sep 17 00:00:00 2001
From: Corentin Jabot
Date: Sun, 26 Nov 2023 22:47:51 +0100
Subject: [PATCH 1/4] [Clang] Eagerly instantiate used constexpr function upon
d
cor3ntin wrote:
> Thanks! I assume you'll also be looking at the variable case (perhaps as a
> separate commit)?
I'll try to get to it, yes!
Thanks for the review
https://github.com/llvm/llvm-project/pull/73463
___
cfe-commits mailing list
cfe-commit
cor3ntin wrote:
@usx95 stupid question, how does that affects llvm when built with GCC/MSVC?
If we do require a too recent version of compiler to build in C++20 mode it
will make it harder to move llvm to C++20.
https://github.com/llvm/llvm-project/pull/72348
__
@@ -14240,6 +14294,114 @@ StmtResult Sema::ActOnCXXForRangeIdentifier(Scope *S,
SourceLocation IdentLoc,
: IdentLoc);
}
+static ImplicitConversionKind getConversionKind(QualType FromType,
+
https://github.com/cor3ntin edited
https://github.com/llvm/llvm-project/pull/73099
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: cor3ntin
Date: 2023-11-30T08:45:05+01:00
New Revision: 030047c432cac133738be68fa0974f70e69dd58d
URL:
https://github.com/llvm/llvm-project/commit/030047c432cac133738be68fa0974f70e69dd58d
DIFF:
https://github.com/llvm/llvm-project/commit/030047c432cac133738be68fa0974f70e69dd58d.diff
LOG:
https://github.com/cor3ntin closed
https://github.com/llvm/llvm-project/pull/73463
___
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: Sameer Sahasrabuddhe (ssahasra)
Changes
In the builtins declaration, "ULi" is a 32-bit integer on Windows. Use "WUi"
instead to ensure a 64-bit integer on all platforms.
---
Full diff: https://github.com/llvm/llvm-project/pull/73906.diff
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Sam McCall (sam-mccall)
Changes
Summary:
The logic to strip positional args feels very fragile, but it's terribly useful
when you want to use a tool on a file and have the exact argv.
Today doesn't work with header-parsing actions because
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 6d2dfd37bd50b21ed90427052198bd1f06c761f8
61b0a506142990255f37fc5e52d56805bbba1889 --
Author: Mariya Podchishchaeva
Date: 2023-11-30T10:46:35+01:00
New Revision: 14ca8d44d0f44ea5125b3c41b66276c902929a54
URL:
https://github.com/llvm/llvm-project/commit/14ca8d44d0f44ea5125b3c41b66276c902929a54
DIFF:
https://github.com/llvm/llvm-project/commit/14ca8d44d0f44ea5125b3c41b66276c902929a
Author: Lucas Duarte Prates
Date: 2023-11-30T10:08:12Z
New Revision: eef8e1d206dc01c081a0ca29b7f9e0c39d33446e
URL:
https://github.com/llvm/llvm-project/commit/eef8e1d206dc01c081a0ca29b7f9e0c39d33446e
DIFF:
https://github.com/llvm/llvm-project/commit/eef8e1d206dc01c081a0ca29b7f9e0c39d33446e.diff
Author: Jonas Paulsson
Date: 2023-11-30T11:12:13+01:00
New Revision: b04a419be1cac5711029b511cfe16e6748a44a4d
URL:
https://github.com/llvm/llvm-project/commit/b04a419be1cac5711029b511cfe16e6748a44a4d
DIFF:
https://github.com/llvm/llvm-project/commit/b04a419be1cac5711029b511cfe16e6748a44a4d.diff
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Sameer Sahasrabuddhe (ssahasra)
Changes
The Clang declaration of the wave-64 builtin uses "UL" as the return type,
which is interpreted as a 32-bit unsigned integer on Windows. This emits an
incorrect LLVM declaration with i32 return type
@@ -4163,3 +4163,24 @@ let Predicates = [HasSVE2orSME2, HasLUT] in {
// LUTI4 (two contiguous registers)
defm LUTI4_Z2ZZI : sve2_luti4_vector_vg2_index<"luti4">;
} // End HasSVE2orSME2, HasLUT
+
+//===--===/
Author: Serge Pavlov
Date: 2023-11-30T17:33:35+07:00
New Revision: e620035a28d5d957623aa7b4aeda35ab5130e2c9
URL:
https://github.com/llvm/llvm-project/commit/e620035a28d5d957623aa7b4aeda35ab5130e2c9
DIFF:
https://github.com/llvm/llvm-project/commit/e620035a28d5d957623aa7b4aeda35ab5130e2c9.diff
llvmbot wrote:
@llvm/pr-subscribers-clang-tidy
Author: Clement Courbet (legrosbuffle)
Changes
... so that derived checks can implement custom behaviour. Does nothing by
default, which makes this an NFC.
---
Full diff: https://github.com/llvm/llvm-project/pull/73921.diff
2 Files Affect
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 e620035a28d5d957623aa7b4aeda35ab5130e2c9
e251c440b42fe67dee4022d08d05e96d30d6aa02 --
Author: Michael Buch
Date: 2023-11-30T10:41:24Z
New Revision: 53a24c33f09b81b8f009afbabd05f7086db3f288
URL:
https://github.com/llvm/llvm-project/commit/53a24c33f09b81b8f009afbabd05f7086db3f288
DIFF:
https://github.com/llvm/llvm-project/commit/53a24c33f09b81b8f009afbabd05f7086db3f288.diff
LOG:
Author: Momchil Velikov
Date: 2023-11-30T11:18:02Z
New Revision: 092507a730fa4fad6dbe544cd139cfb7e8179aa4
URL:
https://github.com/llvm/llvm-project/commit/092507a730fa4fad6dbe544cd139cfb7e8179aa4
DIFF:
https://github.com/llvm/llvm-project/commit/092507a730fa4fad6dbe544cd139cfb7e8179aa4.diff
LO
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Mariya Podchishchaeva (Fznamznon)
Changes
Initialize field so there is no use-of-uninitialized-value warning.
---
Full diff: https://github.com/llvm/llvm-project/pull/73928.diff
1 Files Affected:
- (modified) clang/lib/Sema/SemaDecl.cpp
Author: Mariya Podchishchaeva
Date: 2023-11-30T13:34:11+01:00
New Revision: b9b37ea9493b5c1cadaf9cc8547a4525a6ab3854
URL:
https://github.com/llvm/llvm-project/commit/b9b37ea9493b5c1cadaf9cc8547a4525a6ab3854
DIFF:
https://github.com/llvm/llvm-project/commit/b9b37ea9493b5c1cadaf9cc8547a4525a6ab38
@@ -14240,6 +14294,114 @@ StmtResult Sema::ActOnCXXForRangeIdentifier(Scope *S,
SourceLocation IdentLoc,
: IdentLoc);
}
+static ImplicitConversionKind getConversionKind(QualType FromType,
+
https://github.com/cor3ntin edited
https://github.com/llvm/llvm-project/pull/73099
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/cor3ntin edited
https://github.com/llvm/llvm-project/pull/73099
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/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 1566380e6b47d7876c0f3eaa105097063dbe7cc8
c5c17a44bde23c488141514383b364a434f0e920 --
=?utf-8?q?Donát?= Nagy ,
=?utf-8?q?Donát?= Nagy ,
=?utf-8?q?Donát?= Nagy ,
=?utf-8?q?Donát?= Nagy ,
=?utf-8?q?Donát?= Nagy
Message-ID:
In-Reply-To:
https://github.com/DonatNagyE updated
https://github.com/llvm/llvm-project/pull/72107
>From ab102e949994a4462382e4c10c0153d61fb00306 Mon Sep 17 0
=?utf-8?q?Donát?= Nagy ,
=?utf-8?q?Donát?= Nagy ,
=?utf-8?q?Donát?= Nagy ,
=?utf-8?q?Donát?= Nagy ,
=?utf-8?q?Donát?= Nagy ,
=?utf-8?q?Donát?= Nagy
Message-ID:
In-Reply-To:
https://github.com/DonatNagyE updated
https://github.com/llvm/llvm-project/pull/72107
>From ab102e949994a4462382e4c10c01
=?utf-8?q?Donát?= Nagy ,
=?utf-8?q?Donát?= Nagy ,
=?utf-8?q?Donát?= Nagy ,
=?utf-8?q?Donát?= Nagy ,
=?utf-8?q?Donát?= Nagy ,
=?utf-8?q?Donát?= Nagy
Message-ID:
In-Reply-To:
DonatNagyE wrote:
@Xazax-hun I added a few testcases that show the current behavior of the
checker w.r.t. invalid refere
Author: Sam Tebbs
Date: 2023-11-30T14:58:34Z
New Revision: 5234fe31547737f4fc9d312946cb647968734da1
URL:
https://github.com/llvm/llvm-project/commit/5234fe31547737f4fc9d312946cb647968734da1
DIFF:
https://github.com/llvm/llvm-project/commit/5234fe31547737f4fc9d312946cb647968734da1.diff
LOG: [AA
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Jonas Hahnfeld (hahnjo)
Changes
Before, it was only cleared if there were undefined entities. This is important
for Clang's incremental parsing as used by `clang-repl` that might receive
multiple calls to `Sema.ActOnEndOfTranslationUnit`.
Author: Vlad Serebrennikov
Date: 2023-11-30T21:16:33+04:00
New Revision: ea5b1ef016d020c37f903d6c7d4f623be975dab8
URL:
https://github.com/llvm/llvm-project/commit/ea5b1ef016d020c37f903d6c7d4f623be975dab8
DIFF:
https://github.com/llvm/llvm-project/commit/ea5b1ef016d020c37f903d6c7d4f623be975dab8.
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Jacob Lambert (lamb-j)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/73968.diff
1 Files Affected:
- (modified) clang/docs/ClangOffloadBundler.rst (-1)
``diff
diff --git a/clang/docs/ClangOffloadBundler.rst
llvmbot wrote:
@llvm/pr-subscribers-backend-risc-v
@llvm/pr-subscribers-clang-driver
Author: Philip Reames (preames)
Changes
When we'd originally added unaligned-scalar-mem and unaligned-vector-mem, they
were separated into two parts under the theory that some processor might
implement o
@@ -14240,6 +14294,114 @@ StmtResult Sema::ActOnCXXForRangeIdentifier(Scope *S,
SourceLocation IdentLoc,
: IdentLoc);
}
+static ImplicitConversionKind getConversionKind(QualType FromType,
+
@@ -6226,6 +6226,15 @@ ExprResult Sema::CheckConvertedConstantExpression(Expr
*From, QualType T,
return R;
}
+ExprResult Sema::EvaluateConvertedConstantExpression(Expr *E, QualType T,
+ APValue &Value,
+
Author: Ivan R. Ivanov
Date: 2023-11-30T13:21:03-06:00
New Revision: 065796bb9293b222fa3d63311af542a98b96d09a
URL:
https://github.com/llvm/llvm-project/commit/065796bb9293b222fa3d63311af542a98b96d09a
DIFF:
https://github.com/llvm/llvm-project/commit/065796bb9293b222fa3d63311af542a98b96d09a.diff
@@ -7909,6 +7903,37 @@ bool
Sema::CheckTemplateTemplateArgument(TemplateTemplateParmDecl *Param,
Arg.getLocation());
}
+static Sema::SemaDiagnosticBuilder noteLocation(Sema &S, const NamedDecl &Decl,
+
Author: Emilia Kond
Date: 2023-11-30T21:26:39+02:00
New Revision: a112921d88c28b9d3ac30cad7dbc961a33f22926
URL:
https://github.com/llvm/llvm-project/commit/a112921d88c28b9d3ac30cad7dbc961a33f22926
DIFF:
https://github.com/llvm/llvm-project/commit/a112921d88c28b9d3ac30cad7dbc961a33f22926.diff
L
Author: Jacob Lambert
Date: 2023-11-30T11:33:39-08:00
New Revision: 96906a92bebe76a1f6510701756aa40280b3a019
URL:
https://github.com/llvm/llvm-project/commit/96906a92bebe76a1f6510701756aa40280b3a019
DIFF:
https://github.com/llvm/llvm-project/commit/96906a92bebe76a1f6510701756aa40280b3a019.diff
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Brad Smith (brad0)
Changes
The minimum GCC version was bumped up from 4.8 to 5.1 and then even newer
awhile ago so garbage collect the 4.9 workaround.
https://reviews.llvm.org/D66188
---
Full diff: https://github.com/llvm/llvm-project/pu
llvmbot wrote:
@llvm/pr-subscribers-clang-analysis
Author: Samira Bazuzi (bazuzi)
Changes
… pointers.
getMethodDecl does not handle pointers to members and returns nullptr for them.
getMethodDecl contains a decade-plus-old FIXME to handle pointers to members,
but two approaches I looked
Author: Michael Spencer
Date: 2023-11-30T12:47:27-08:00
New Revision: 13386c608e6d571d2d91eea5f7c8fb6911d6dcfb
URL:
https://github.com/llvm/llvm-project/commit/13386c608e6d571d2d91eea5f7c8fb6911d6dcfb
DIFF:
https://github.com/llvm/llvm-project/commit/13386c608e6d571d2d91eea5f7c8fb6911d6dcfb.dif
https://github.com/cor3ntin edited
https://github.com/llvm/llvm-project/pull/73103
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
eddyz87 wrote:
> @eddyz87 ping!
@DavidSpickett, my apologies, I messed up my notification settings.
Thank you for fixing this test.
https://github.com/llvm/llvm-project/pull/65251
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.l
Author: Brad Smith
Date: 2023-11-30T17:58:09-05:00
New Revision: 812dad536ed50abe94d6e2b2519f351791c24c59
URL:
https://github.com/llvm/llvm-project/commit/812dad536ed50abe94d6e2b2519f351791c24c59
DIFF:
https://github.com/llvm/llvm-project/commit/812dad536ed50abe94d6e2b2519f351791c24c59.diff
LO
https://github.com/ZijunZhaoCCK updated
https://github.com/llvm/llvm-project/pull/71771
>From 06c4cf02dfb4b20c8349c5f3c7209276f6d56edf Mon Sep 17 00:00:00 2001
From: zijunzhao
Date: Thu, 9 Nov 2023 02:21:46 +
Subject: [PATCH 1/3] Fix clang to recognize new C23 modifiers %w and %wf when
pri
Author: Paul Kirth
Date: 2023-11-30T17:09:34-08:00
New Revision: cfe1ece833d643921da2735cd80e32b32ef170fb
URL:
https://github.com/llvm/llvm-project/commit/cfe1ece833d643921da2735cd80e32b32ef170fb
DIFF:
https://github.com/llvm/llvm-project/commit/cfe1ece833d643921da2735cd80e32b32ef170fb.diff
LO
llvmbot wrote:
@llvm/pr-subscribers-clang
@llvm/pr-subscribers-clang-analysis
Author: Ziqing Luo (ziqingluo-90)
Changes
The commit 54bfd04846156dbd5e0a6b88f539c3d4569a455f introduces general handling
of constructor and destructor calls. Consider a pair of TEMPORARY constructor
and destr
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 668a4a238045e7f300b771f7e4cfa723d8bde237
ecb13c381d99010dc04a2da4e945dfd1132777fd --
llvmbot wrote:
@llvm/pr-subscribers-clang
@llvm/pr-subscribers-backend-x86
Author: Brad Smith (brad0)
Changes
NetBSD 7.x is long EoL. Make 8.x the minimum.
---
Full diff: https://github.com/llvm/llvm-project/pull/74025.diff
2 Files Affected:
- (modified) clang/lib/Basic/Targets/X86.h (
dhruvachak wrote:
After https://github.com/llvm/llvm-project/pull/73864, only reduction kernels
may have the additional data submit for the kernel launch environment. If you
have an INFO message like in https://github.com/llvm/llvm-project/pull/74030,
you will see this additional INFO message
https://github.com/mahtohappy updated
https://github.com/llvm/llvm-project/pull/72522
Sorry, this diff is unavailable.
___
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: Sandeep Kosuri (sandeepkosuri)
Changes
- `nothing` directive was effecting the `if` block structure which it should
not. So return an empty statement instead of an error statement while parsing
to avoid this.
---
Full diff: https://githu
Author: Younan Zhang
Date: 2023-12-01T15:20:04+08:00
New Revision: c1ad363e6eba308fa94c47374ee98b3c79693a35
URL:
https://github.com/llvm/llvm-project/commit/c1ad363e6eba308fa94c47374ee98b3c79693a35
DIFF:
https://github.com/llvm/llvm-project/commit/c1ad363e6eba308fa94c47374ee98b3c79693a35.diff
Author: Romaric Jodin
Date: 2023-12-01T16:34:44+09:00
New Revision: d56e0d07cc5ee8e334fd1ad403eef0b1a771384f
URL:
https://github.com/llvm/llvm-project/commit/d56e0d07cc5ee8e334fd1ad403eef0b1a771384f
DIFF:
https://github.com/llvm/llvm-project/commit/d56e0d07cc5ee8e334fd1ad403eef0b1a771384f.diff
https://github.com/skc7 updated https://github.com/llvm/llvm-project/pull/70166
>From dcb104a61666e75b4b21b7a119524c32b22262b8 Mon Sep 17 00:00:00 2001
From: skc7
Date: Wed, 25 Oct 2023 10:46:10 +0530
Subject: [PATCH] [ASAN] For Asan instrumented globals, emit two symbols, with
actual size and
llvmbot wrote:
@llvm/pr-subscribers-clang
@llvm/pr-subscribers-llvm-transforms
Author: Matt Arsenault (arsenm)
Changes
This reverts commit ef388334ee5a3584255b9ef5b3fefdb244fa3fd7.
The referenced issue violates the spec for finite-only math only by
using a return value for a constant infi
llvmbot wrote:
@llvm/pr-subscribers-llvm-analysis
Author: Matt Arsenault (arsenm)
Changes
This reverts commit ef388334ee5a3584255b9ef5b3fefdb244fa3fd7.
The referenced issue violates the spec for finite-only math only by
using a return value for a constant infinity. If the interpretation
i
3901 - 4000 of 429089 matches
Mail list logo