https://github.com/Keenuts updated
https://github.com/llvm/llvm-project/pull/138530
From 085154ddedf3b0789a3908231d04f997e9e66ac4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nathan=20Gau=C3=ABr?=
Date: Wed, 30 Apr 2025 11:06:55 +0200
Subject: [PATCH 1/7] [HLSL] Implement vk::ext_builtin_input attr
@@ -1360,8 +1360,15 @@ void
TargetLibraryInfoImpl::addVectorizableFunctionsFromVecLib(
addVectorizableFunctions(VecFuncs_DarwinLibSystemM);
break;
}
- case LIBMVEC_X86: {
-addVectorizableFunctions(VecFuncs_LIBMVEC_X86);
+ case LIBMVEC: {
+switch (TargetTrip
https://github.com/cor3ntin approved this pull request.
Missing changelog entry. Otherwise LGTM
https://github.com/llvm/llvm-project/pull/138832
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe
https://github.com/lalaniket8 closed
https://github.com/llvm/llvm-project/pull/137769
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/kadircet approved this pull request.
thanks!
https://github.com/llvm/llvm-project/pull/138799
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/zyn0217 updated
https://github.com/llvm/llvm-project/pull/122423
>From 56bacf47c53aca276ae4fa6aa2972b7eda152ddd Mon Sep 17 00:00:00 2001
From: Younan Zhang
Date: Fri, 10 Jan 2025 09:46:24 +0800
Subject: [PATCH 01/12] Reapply "[Clang] Implement CWG2369 "Ordering between
const
xlauko wrote:
> > Overall looks good. While here, can you please implement a folder for this
> > operation? It should kick-in if both idx and input vector are constants.
>
> @bcardosolopes I implement it like this snippet
>
> ```
> OpFoldResult cir::VecExtractOp::fold(FoldAdaptor adaptor) {
>
https://github.com/Sirraide commented:
> The LLVM cleanup was more surprising: I discovered that we have an [old
> policy](https://llvm.org/docs/CodingStandards.html#provide-a-virtual-method-anchor-for-classes-in-headers)
> about including out-of-line virtual functions in every class with a vta
@@ -16,6 +16,7 @@
_LIBCPP_CLANG_DIAGNOSTIC_IGNORED("-Wtautological-constant-out-of-range-compare")
_LIBCPP_BEGIN_NAMESPACE_STD
namespace {
+// Whitespace change DO NOT MERGE
Sirraide wrote:
👀
https://github.com/llvm/llvm-project/pull/138741
https://github.com/Sirraide edited
https://github.com/llvm/llvm-project/pull/138741
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -16,6 +16,7 @@
_LIBCPP_CLANG_DIAGNOSTIC_IGNORED("-Wtautological-constant-out-of-range-compare")
_LIBCPP_BEGIN_NAMESPACE_STD
namespace {
+// Whitespace change DO NOT MERGE
Sirraide wrote:
> This should probably work. To make sure you can make a simple chan
https://github.com/Sirraide edited
https://github.com/llvm/llvm-project/pull/138741
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/a-tarasyuk updated
https://github.com/llvm/llvm-project/pull/138519
>From cbbca4d26b8d00eb103f110c2341fab2e4a2e40d Mon Sep 17 00:00:00 2001
From: Oleksandr Tarasiuk
Date: Mon, 5 May 2025 15:30:14 +0300
Subject: [PATCH 1/2] [Clang] diagnose unknown attribute namespaces
---
c
@@ -3691,6 +3691,7 @@ CGOpenMPRuntime::emitTaskInit(CodeGenFunction &CGF,
SourceLocation Loc,
DestructorsFlag = 0x8,
PriorityFlag = 0x20,
DetachableFlag = 0x40,
+PoolFlag = 0x80,
dreachem wrote:
For the runtime change in this PR, is it suffici
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Aaron Ballman (AaronBallman)
Changes
We were previously recovering a bit too hard; consumeClose() would skip to a
recovery point, then we would call skipToEnd() to skip to another recovery
point. Needless to say, the follow-on diagnostics
Sirraide wrote:
> This seems like a good way to do it, since it clearly documents what's going
> on. LLVM is the only project I've seen with such a policy; across all of
> chromium's dependencies, the extra `virtual` specifiers we flagged were
> indeed mistakes. The issue with libc++ was more
@@ -3691,6 +3691,7 @@ CGOpenMPRuntime::emitTaskInit(CodeGenFunction &CGF,
SourceLocation Loc,
DestructorsFlag = 0x8,
PriorityFlag = 0x20,
DetachableFlag = 0x40,
+PoolFlag = 0x80,
alexey-bataev wrote:
The runtime change is better to implement i
https://github.com/AaronBallman created
https://github.com/llvm/llvm-project/pull/138877
We were previously recovering a bit too hard; consumeClose() would skip to a
recovery point, then we would call skipToEnd() to skip to another recovery
point. Needless to say, the follow-on diagnostics wer
https://github.com/Endilll commented:
Changes to DR tests look good
https://github.com/llvm/llvm-project/pull/138872
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/AaronBallman updated
https://github.com/llvm/llvm-project/pull/138752
Rate limit · GitHub
body {
background-color: #f6f8fa;
color: #24292e;
font-family: -apple-system,BlinkMacSystemFont,Segoe
UI,Helvetica,Arial,s
https://github.com/Sirraide approved this pull request.
https://github.com/llvm/llvm-project/pull/138673
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/erichkeane approved this pull request.
https://github.com/llvm/llvm-project/pull/138877
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/cor3ntin approved this pull request.
https://github.com/llvm/llvm-project/pull/138872
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/DimitrijeDobrota updated
https://github.com/llvm/llvm-project/pull/138755
Rate limit · GitHub
body {
background-color: #f6f8fa;
color: #24292e;
font-family: -apple-system,BlinkMacSystemFont,Segoe
UI,Helvetica,Ari
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Timm Baeder (tbaederr)
Changes
We often see initializers like
unsigned a = 10;
which take an integer literal and immediately cast it to another type.
Recognize this pattern and omit the cast, simply emitting the value as a
different typ
Author: Aaron Ballman
Date: 2025-05-07T10:05:00-04:00
New Revision: b59ab701e94cce455a53358cbe5082a3efb58fbf
URL:
https://github.com/llvm/llvm-project/commit/b59ab701e94cce455a53358cbe5082a3efb58fbf
DIFF:
https://github.com/llvm/llvm-project/commit/b59ab701e94cce455a53358cbe5082a3efb58fbf.diff
Xazax-hun wrote:
`inline-functions-with-ambiguous-loops` sounds good to me. I don't think it
makes sense to have `legacy` in the name of an on by default setting.
https://github.com/llvm/llvm-project/pull/136720
___
cfe-commits mailing list
cfe-commi
https://github.com/DimitrijeDobrota updated
https://github.com/llvm/llvm-project/pull/138757
Rate limit · GitHub
body {
background-color: #f6f8fa;
color: #24292e;
font-family: -apple-system,BlinkMacSystemFont,Segoe
UI,Helvetica,Ari
https://github.com/tbaederr created
https://github.com/llvm/llvm-project/pull/138879
We often see initializers like
unsigned a = 10;
which take an integer literal and immediately cast it to another type.
Recognize this pattern and omit the cast, simply emitting the value as a
different type
https://github.com/AaronBallman closed
https://github.com/llvm/llvm-project/pull/138752
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -12490,6 +12499,17 @@ static void AnalyzeImplicitConversions(
(BO->getOpcode() == BO_And ? "&&" : "||"));
S.Diag(BO->getBeginLoc(), diag::note_cast_operand_to_int);
}
+} else if (BO->isCommaOp() && !S.getLangOpts().CPlusPlus) {
+ ///
@@ -4899,6 +4899,234 @@ void
CGOpenMPRuntime::emitSingleReductionCombiner(CodeGenFunction &CGF,
}
}
+void CGOpenMPRuntime::emitPrivateReduction(
+CodeGenFunction &CGF, SourceLocation Loc, ArrayRef Privates,
+ArrayRef LHSExprs, ArrayRef RHSExprs,
+ArrayRef Reduct
https://github.com/jeremyd2019 updated
https://github.com/llvm/llvm-project/pull/138587
>From 0c380bb4f2f41679ef32db2b9358cf127257d1fb Mon Sep 17 00:00:00 2001
From: Jeremy Drake
Date: Tue, 6 May 2025 16:54:24 -0700
Subject: [PATCH 1/2] [Clang][CMake] use CMakePushCheckState
The previous appro
https://github.com/jeremyd2019 edited
https://github.com/llvm/llvm-project/pull/138587
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
AaronBallman wrote:
> What do we think @AaronBallman ? I think the diagnostic column is as best
> effort as we are going to get, so I'm OK with this as-is. WE could perhaps
> improve that, but I don't think doing that here is worth the effort.
>
> I'll approve, but I want to make sure Aaron ha
https://github.com/jeremyd2019 edited
https://github.com/llvm/llvm-project/pull/138587
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
jeremyd2019 wrote:
I rebased this on top of #138783 and adjusted the title and description. Now
it should be in a good state to push cmake changes for other projects.
https://github.com/llvm/llvm-project/pull/138587
___
cfe-commits mailing list
cfe-c
@@ -238,3 +246,69 @@ void f(Scoped1 S1, Scoped2 S2) {
}
#endif
+
+#if __cplusplus >= 202000L
+class my_string {
+ char *data;
+ unsigned size;
+
+public:
+ template
+ constexpr my_string(const char (&literal)[N]) {
+data = new char[N+1];
+for (size = 0; size < N; +
@@ -109,3 +109,48 @@ void func2(void) {
void func3(void) {
float a[16][1] = {{0.}};
}
+
+// CL12-LABEL: define dso_local void @wrong_store_type_private_pointer_alloca(
+// CL12-SAME: ) #[[ATTR0]] {
+// CL12-NEXT: [[ENTRY:.*:]]
+// CL12-NEXT:[[PLONG:%.*]] = alloca i64, al
https://github.com/bogner approved this pull request.
https://github.com/llvm/llvm-project/pull/137999
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -109,3 +109,48 @@ void func2(void) {
void func3(void) {
float a[16][1] = {{0.}};
}
+
+// CL12-LABEL: define dso_local void @wrong_store_type_private_pointer_alloca(
+// CL12-SAME: ) #[[ATTR0]] {
+// CL12-NEXT: [[ENTRY:.*:]]
+// CL12-NEXT:[[PLONG:%.*]] = alloca i64, al
https://github.com/ojhunt edited
https://github.com/llvm/llvm-project/pull/137580
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/HerrCai0907 approved this pull request.
LGTM
https://github.com/llvm/llvm-project/pull/138757
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
HerrCai0907 wrote:
> Since :: are specified before std::move, I am not entirely sure whether it
> would be required for the custom function. In my testing it worked both with
> and without ::.
with :: means is a full name including namespace, without :: means only match
function name.
https:
https://github.com/HerrCai0907 edited
https://github.com/llvm/llvm-project/pull/138757
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
ian-twilightcoder wrote:
> LGTM.
>
> I would remove the newly added commented `/* static */`
Alright well it's going to bother me that they don't match the other ones, so
I'll get rid of them all.
https://github.com/llvm/llvm-project/pull/138234
___
https://github.com/ian-twilightcoder updated
https://github.com/llvm/llvm-project/pull/138234
>From ba40d11f56248850e07eb41b9bdebd407b09f83f Mon Sep 17 00:00:00 2001
From: Ian Anderson
Date: Thu, 1 May 2025 22:44:52 -0700
Subject: [PATCH] [clang][Darwin] Remove legacy framework search path logi
llvmbot wrote:
@llvm/pr-subscribers-backend-x86
Author: None (wdx727)
Changes
We would like to add the matching and inference functionality to Propeller to
address the issue that Propeller has zero tolerance for changes in source code
and compilation parameters. The complete RFC can be f
llvmbot wrote:
@llvm/pr-subscribers-lld-elf
Author: None (wdx727)
Changes
We would like to add the matching and inference functionality to Propeller to
address the issue that Propeller has zero tolerance for changes in source code
and compilation parameters. The complete RFC can be found
llvmbot wrote:
@llvm/pr-subscribers-clang-codegen
Author: None (wdx727)
Changes
We would like to add the matching and inference functionality to Propeller to
address the issue that Propeller has zero tolerance for changes in source code
and compilation parameters. The complete RFC can be
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
llvmbot wrote:
@llvm/pr-subscribers-clang-driver
Author: Yuta Saito (kateinoigakukun)
Changes
I'm working on porting ASan to Wasm/WASI targets, and this is the first part of
the change sets. I'll post runtime changes separately.
This change makes `-fsanitize=address` available for WASI t
https://github.com/kateinoigakukun created
https://github.com/llvm/llvm-project/pull/139014
I'm working on porting ASan to Wasm/WASI targets, and this is the first part of
the change sets. I'll post runtime changes later.
This change makes `-fsanitize=address` available for WASI target by repl
https://github.com/kateinoigakukun edited
https://github.com/llvm/llvm-project/pull/139014
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder `llvm-x86_64-debian-dylib`
running on `gribozavr4` while building `clang` at step 6
"test-build-unified-tree-check-clang".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/60/builds/26748
Here is the r
dyung wrote:
> LLVM Buildbot has detected a new failure on builder
> `llvm-clang-x86_64-sie-ubuntu-fast` running on `sie-linux-worker` while
> building `clang` at step 6 "test-build-unified-tree-check-all".
>
> Full details are available at:
> https://lab.llvm.org/buildbot/#/builders/144/buil
Author: Yaxun (Sam) Liu
Date: 2025-05-07T22:03:33-04:00
New Revision: c16297cd3f0ed9d036e9cf16fb6885aa3c72d5d3
URL:
https://github.com/llvm/llvm-project/commit/c16297cd3f0ed9d036e9cf16fb6885aa3c72d5d3
DIFF:
https://github.com/llvm/llvm-project/commit/c16297cd3f0ed9d036e9cf16fb6885aa3c72d5d3.dif
https://github.com/yxsamliu closed
https://github.com/llvm/llvm-project/pull/138162
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/tclin914 updated
https://github.com/llvm/llvm-project/pull/138827
Rate limit · GitHub
body {
background-color: #f6f8fa;
color: #24292e;
font-family: -apple-system,BlinkMacSystemFont,Segoe
UI,Helvetica,Arial,sans-
https://github.com/jofrn updated
https://github.com/llvm/llvm-project/pull/123609
Rate limit · GitHub
body {
background-color: #f6f8fa;
color: #24292e;
font-family: -apple-system,BlinkMacSystemFont,Segoe
UI,Helvetica,Arial,sans-ser
https://github.com/HerrCai0907 edited
https://github.com/llvm/llvm-project/pull/138757
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/HerrCai0907 approved this pull request.
LGTM.
It looks similar as https://github.com/llvm/llvm-project/pull/138757. could you
add a test for both PR.
https://github.com/llvm/llvm-project/pull/138755
___
cfe-commits mailing list
cfe-
https://github.com/arsenm edited
https://github.com/llvm/llvm-project/pull/138863
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/arsenm closed
https://github.com/llvm/llvm-project/pull/138862
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/138863
Rate limit · GitHub
body {
background-color: #f6f8fa;
color: #24292e;
font-family: -apple-system,BlinkMacSystemFont,Segoe
UI,Helvetica,Arial,sans-se
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/138863
>From 8593c30aaa9ec9841ffd7172ef8c32e72f9bad4b Mon Sep 17 00:00:00 2001
From: Matt Arsenault
Date: Wed, 7 May 2025 08:34:40 +0200
Subject: [PATCH] clang: Fix broken implicit cast to generic address space
This fi
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/138862
>From decbf5b3a2cbb4f8844b9556fbfafec73c117687 Mon Sep 17 00:00:00 2001
From: Matt Arsenault
Date: Wed, 7 May 2025 08:38:49 +0200
Subject: [PATCH 1/2] clang/OpenCL: Add baseline test showing broken codegen
---
Author: Filip Milosevic
Date: 2025-05-07T22:47:56-07:00
New Revision: 5df01abe191ff4f848566e239798a2b4d26e1cf4
URL:
https://github.com/llvm/llvm-project/commit/5df01abe191ff4f848566e239798a2b4d26e1cf4
DIFF:
https://github.com/llvm/llvm-project/commit/5df01abe191ff4f848566e239798a2b4d26e1cf4.dif
https://github.com/owenca closed
https://github.com/llvm/llvm-project/pull/137610
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: Matt Arsenault
Date: 2025-05-08T07:51:57+02:00
New Revision: a11d86461e7d7d9bce3d04a39ded1cad394239ca
URL:
https://github.com/llvm/llvm-project/commit/a11d86461e7d7d9bce3d04a39ded1cad394239ca
DIFF:
https://github.com/llvm/llvm-project/commit/a11d86461e7d7d9bce3d04a39ded1cad394239ca.diff
https://github.com/arsenm closed
https://github.com/llvm/llvm-project/pull/138863
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/arsenm edited
https://github.com/llvm/llvm-project/pull/138864
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/arsenm updated
https://github.com/llvm/llvm-project/pull/138864
Rate limit · GitHub
body {
background-color: #f6f8fa;
color: #24292e;
font-family: -apple-system,BlinkMacSystemFont,Segoe
UI,Helvetica,Arial,sans-se
github-actions[bot] wrote:
@MightyFilipns Congratulations on having your first Pull Request (PR) merged
into the LLVM Project!
Your changes will be combined with recent changes from other authors, then
tested by our [build bots](https://lab.llvm.org/buildbot/). If there is a
problem with a
https://github.com/cor3ntin updated
https://github.com/llvm/llvm-project/pull/138835
Rate limit · GitHub
body {
background-color: #f6f8fa;
color: #24292e;
font-family: -apple-system,BlinkMacSystemFont,Segoe
UI,Helvetica,Arial,sans-
jwnrt wrote:
Sorry for the long delay.
I think you're right that there's no difference to the RTL. I need to test this
properly and learn more about address spaces. In particular, I think address
space zero has some special casing around it being the generic / fallback
address space that inte
https://github.com/jwnrt converted_to_draft
https://github.com/llvm/llvm-project/pull/134254
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -89,15 +96,18 @@ static_assert(!__is_trivially_constructible(S4, const S4&));
static_assert(!__is_trivially_assignable(S4, const S4&));
static_assert(__is_trivially_destructible(S4));
static_assert(!__is_trivially_copyable(S4));
-static_assert(!__is_trivially_relocatable(S4)
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: None (ganenkokb-yandex)
Changes
I've rebased commit from
[Evianaive](https://github.com/Evianaive/llvm-project/commits?author=Evianaive)
and compiled it.
I hope it will speed up fix for #129393.
---
Full diff: https://github.com/llvm/ll
https://github.com/charan-003 updated
https://github.com/llvm/llvm-project/pull/117953
Rate limit · GitHub
body {
background-color: #f6f8fa;
color: #24292e;
font-family: -apple-system,BlinkMacSystemFont,Segoe
UI,Helvetica,Arial,san
https://github.com/AaronBallman approved this pull request.
Thank you for proposing this! I think both @andykaylor and @bcardosolopes would
be excellent maintainers, so I approve so long as they're willing.
https://github.com/llvm/llvm-project/pull/138870
___
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Sirui Mu (Lancern)
Changes
This PR adds LLVMIR lowering support for the `cir.call` operation.
---
Full diff: https://github.com/llvm/llvm-project/pull/138873.diff
4 Files Affected:
- (modified) clang/include/clang/CIR/MissingFeatures.h
llvmbot wrote:
@llvm/pr-subscribers-clangir
Author: Sirui Mu (Lancern)
Changes
This PR adds LLVMIR lowering support for the `cir.call` operation.
---
Full diff: https://github.com/llvm/llvm-project/pull/138873.diff
4 Files Affected:
- (modified) clang/include/clang/CIR/MissingFeatures.
https://github.com/tbaederr created
https://github.com/llvm/llvm-project/pull/138832
Fixes https://github.com/llvm/llvm-project/issues/138824
>From 8534038ad80d5de9218f8f9663bef16cbcabd19c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Timm=20B=C3=A4der?=
Date: Wed, 7 May 2025 11:03:28 +0200
Subject
https://github.com/jurahul updated
https://github.com/llvm/llvm-project/pull/138174
Rate limit · GitHub
body {
background-color: #f6f8fa;
color: #24292e;
font-family: -apple-system,BlinkMacSystemFont,Segoe
UI,Helvetica,Arial,sans-s
jurahul wrote:
Thanks @jpienaar. Given I have 2 approvals, will commit it today.
https://github.com/llvm/llvm-project/pull/138174
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/DKLoehr updated
https://github.com/llvm/llvm-project/pull/138741
Rate limit · GitHub
body {
background-color: #f6f8fa;
color: #24292e;
font-family: -apple-system,BlinkMacSystemFont,Segoe
UI,Helvetica,Arial,sans-s
https://github.com/tbaederr updated
https://github.com/llvm/llvm-project/pull/138673
Rate limit · GitHub
body {
background-color: #f6f8fa;
color: #24292e;
font-family: -apple-system,BlinkMacSystemFont,Segoe
UI,Helvetica,Arial,sans-
https://github.com/cor3ntin approved this pull request.
Both Bruno and Andy have been involved with CIR for a while, it makes perfect
sense!
https://github.com/llvm/llvm-project/pull/138870
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https
DKLoehr wrote:
Looks like all the libc++ checks passed, so we should be good.
> Alternatively, we could ‘fix’ our codebase instead by introducing an
> LLVM_VIRTUAL_ANCHOR macro or sth like that which disables the diagnostic for
> that one declaration.
This seems like a good way to do it, sinc
@@ -219,6 +219,11 @@ Changes in existing checks
tolerating fix-it breaking compilation when functions is used as pointers
to avoid matching usage of functions within the current compilation unit.
+- Improved :doc:`cppcoreguidelines-rvalue-reference-param-not-moved
https://github.com/a-tarasyuk edited
https://github.com/llvm/llvm-project/pull/138519
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -4179,9 +4183,21 @@ Value *CodeGenFunction::EmitSVEMaskedLoad(const CallExpr
*E,
unsigned IntrinsicID,
bool IsZExtReturn) {
QualType LangPTy = E->getArg(1)->getType();
- llvm::Type *MemEl
https://github.com/paulwalker-arm approved this pull request.
I've not verified every line of the test files but what I've seen looks good,
as do the code changes. Other than a few stylistic suggestions this looks good
to me.
https://github.com/llvm/llvm-project/pull/128019
__
@@ -4179,9 +4183,21 @@ Value *CodeGenFunction::EmitSVEMaskedLoad(const CallExpr
*E,
unsigned IntrinsicID,
bool IsZExtReturn) {
QualType LangPTy = E->getArg(1)->getType();
- llvm::Type *MemEl
@@ -4226,9 +4242,21 @@ Value *CodeGenFunction::EmitSVEMaskedStore(const
CallExpr *E,
SmallVectorImpl &Ops,
unsigned IntrinsicID) {
QualType LangPTy = E->getArg(1)->getType();
- llvm::Type
https://github.com/arsenm approved this pull request.
https://github.com/llvm/llvm-project/pull/138849
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/Sirraide approved this pull request.
Very nice. Thanks!
> Documentation has been moved from .cpp files to the header. Grammar was
> consistently put in \verbatim blocks to render nicely in Doxygen.
Especially this part; this has bothered me in the past. ;Þ
https://github.co
steakhal wrote:
Sorry about my availability. I barely have any focus time these days.
Could you please split your commit into: 1) the original commit we had to later
revert, 2) the changes to fix it that would make it on par with what you have
here now
This would allow me to review the affecte
@@ -2455,6 +2455,11 @@ bool isIncludeFile(llvm::StringRef Line) {
}
bool allowImplicitCompletion(llvm::StringRef Content, unsigned Offset) {
+ // Check if we're inside an empty template argument list
+ if (Content.size() > 2 && Content[Offset - 1] == '<' &&
+ Content[Of
1 - 100 of 437 matches
Mail list logo