vgvassilev wrote:
> Processing just header is also much faster than a full build and I think it
> would only have to run on changed headers and source files for a PR.
Any ideas how to implement that check? If we have a draft implementation we can
check with the the ci folks how to deploy it...
https://github.com/yabinc closed
https://github.com/llvm/llvm-project/pull/110051
___
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/111975
___
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/111976
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: Matt Arsenault
Date: 2024-10-15T09:45:53+04:00
New Revision: 5b330a72a027fb557704a543010fa9656d547023
URL:
https://github.com/llvm/llvm-project/commit/5b330a72a027fb557704a543010fa9656d547023
DIFF:
https://github.com/llvm/llvm-project/commit/5b330a72a027fb557704a543010fa9656d547023.diff
arsenm wrote:
ping
https://github.com/llvm/llvm-project/pull/102462
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
github-actions[bot] wrote:
@thevar1able 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 bu
Author: Konstantin Bogdanov
Date: 2024-10-15T07:53:08+02:00
New Revision: 57d109c4c93c8cf2d7ff9e5877a48152ed7a617a
URL:
https://github.com/llvm/llvm-project/commit/57d109c4c93c8cf2d7ff9e5877a48152ed7a617a
DIFF:
https://github.com/llvm/llvm-project/commit/57d109c4c93c8cf2d7ff9e5877a48152ed7a617a
https://github.com/carlosgalvezp closed
https://github.com/llvm/llvm-project/pull/112283
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
carlosgalvezp wrote:
Thank you for the contribution! I've added [NFC] (non functional change) to
the commit message title.
https://github.com/llvm/llvm-project/pull/112283
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org
@@ -1159,7 +1159,9 @@ class ARMOperand : public MCParsedAsmOperand {
if (!isImm()) return false;
const MCConstantExpr *CE = dyn_cast(getImm());
if (!CE) return false;
davemgreen wrote:
Can this check that CE->getActiveBits() > 32?
https://github.c
@@ -1383,6 +1394,15 @@ static void checkExprLifetimeImpl(Sema &SemaRef,
<< nextPathEntryRange(Path, I + 1, L);
break;
}
+
+ case IndirectLocalPathEntry::DefaultArg: {
+const auto *DAE = cast(Elem.E);
+SemaRef.Diag(DAE->getParam()->
@@ -107,6 +107,39 @@ namespace std {
using std::operator""s;
using std::operator""sv;
+namespace default_args {
+ using IntArray = int[];
bricknerb wrote:
Is this helpful if this is only used once?
https://github.com/llvm/llvm-project/pull/112047
__
@@ -107,6 +107,39 @@ namespace std {
using std::operator""s;
using std::operator""sv;
+namespace default_args {
+ using IntArray = int[];
+ const int *defaultparam1(const int &def1 [[clang::lifetimebound]] = 0); //
#def1
+ const int &defaultparam_array([[clang::lifetimebou
@@ -107,6 +107,39 @@ namespace std {
using std::operator""s;
using std::operator""sv;
+namespace default_args {
+ using IntArray = int[];
+ const int *defaultparam1(const int &def1 [[clang::lifetimebound]] = 0); //
#def1
+ const int &defaultparam_array([[clang::lifetimebou
Author: Timm Baeder
Date: 2024-10-15T07:49:55+02:00
New Revision: 51d0e40c2ee1ab25f408f22e82ef4e16d6fb3103
URL:
https://github.com/llvm/llvm-project/commit/51d0e40c2ee1ab25f408f22e82ef4e16d6fb3103
DIFF:
https://github.com/llvm/llvm-project/commit/51d0e40c2ee1ab25f408f22e82ef4e16d6fb3103.diff
L
https://github.com/tbaederr closed
https://github.com/llvm/llvm-project/pull/112238
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
github-actions[bot] wrote:
@awson 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 build, y
https://github.com/bricknerb updated
https://github.com/llvm/llvm-project/pull/111856
>From 786d31e2657964e578cd1fdf2006b0fb3b19fab6 Mon Sep 17 00:00:00 2001
From: Boaz Brickner
Date: Thu, 10 Oct 2024 15:15:23 +
Subject: [PATCH 1/5] [clang] When checking for covariant return types, make
su
https://github.com/cor3ntin closed
https://github.com/llvm/llvm-project/pull/96464
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: awson
Date: 2024-10-15T07:52:02+02:00
New Revision: 37bd788138e1f18d5e327de28a6940da57cdcde8
URL:
https://github.com/llvm/llvm-project/commit/37bd788138e1f18d5e327de28a6940da57cdcde8
DIFF:
https://github.com/llvm/llvm-project/commit/37bd788138e1f18d5e327de28a6940da57cdcde8.diff
LOG: [C
https://github.com/NimishMishra approved this pull request.
LGTM! Thanks for this.
The Windows CI failure seems to be in `Driver/atomic.f90`. Do we disable this
test on Windows (if there is a way to do so)?
https://github.com/llvm/llvm-project/pull/112202
__
https://github.com/T-Gruber created
https://github.com/llvm/llvm-project/pull/112313
The current implementation of MemRegion::getDescriptiveName fails for
FieldRegions whose SuperRegion is an ElementRegion. As outlined below:
```Cpp
struct val_struct { int val; };
extern struct val_struct val_s
llvmbot wrote:
@llvm/pr-subscribers-clang-static-analyzer-1
Author: None (T-Gruber)
Changes
The current implementation of MemRegion::getDescriptiveName fails for
FieldRegions whose SuperRegion is an ElementRegion. As outlined below:
```Cpp
struct val_struct { int val; };
extern struct val
@@ -1370,7 +1381,7 @@ static void checkExprLifetimeImpl(Sema &SemaRef,
break;
}
- case IndirectLocalPathEntry::LambdaCaptureInit:
+ case IndirectLocalPathEntry::LambdaCaptureInit: {
bricknerb wrote:
Revert this change as it seems unrel
https://github.com/bricknerb deleted
https://github.com/llvm/llvm-project/pull/112047
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -1370,7 +1381,7 @@ static void checkExprLifetimeImpl(Sema &SemaRef,
break;
}
- case IndirectLocalPathEntry::LambdaCaptureInit:
+ case IndirectLocalPathEntry::LambdaCaptureInit: {
bricknerb wrote:
Revert this change as it is unrelate
https://github.com/jurahul created
https://github.com/llvm/llvm-project/pull/112318
None
>From a9ded784183d3df06434814af9e0ca32d9ef907f Mon Sep 17 00:00:00 2001
From: Rahul Joshi
Date: Mon, 14 Oct 2024 22:56:07 -0700
Subject: [PATCH] [Clang][TableGen] Use const pointer for various `Init`
poin
https://github.com/jurahul created
https://github.com/llvm/llvm-project/pull/112317
None
>From 6dfa15a4c498855bc8bfe363671b7ee17d55d980 Mon Sep 17 00:00:00 2001
From: Rahul Joshi
Date: Mon, 14 Oct 2024 23:12:24 -0700
Subject: [PATCH] [Clang][TableGen] NeonEmitter
---
clang/utils/TableGen/Neo
@@ -0,0 +1,65 @@
+// RUN: %clang_cc1 -triple aarch64-pc-windows-msvc -emit-llvm -o - %s |
FileCheck %s
DanielKristofKiss wrote:
So far, but other targets could be added here later without too much change to
the test.
https://github.com/llvm/llvm-project/pull/1
https://github.com/jurahul edited
https://github.com/llvm/llvm-project/pull/112317
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/jurahul edited
https://github.com/llvm/llvm-project/pull/112317
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/shiltian updated
https://github.com/llvm/llvm-project/pull/108786
>From c2be824d5935b57a87a7ccf618ee4eecf55b4e3a Mon Sep 17 00:00:00 2001
From: Shilei Tian
Date: Tue, 17 Sep 2024 21:47:45 -0400
Subject: [PATCH] [IR] Introduce `T` to `DataLayout` to
represent flat address spa
https://github.com/jhuber6 created
https://github.com/llvm/llvm-project/pull/112248
Summary:
Currently, we want to use the OpenCL attributes to indicate the address
space. Languages like SYCL, OpenMP, HIP, and CUDA allow their address
space qualifiers to be implicitly converted to generic, as do
llvmbot wrote:
@llvm/pr-subscribers-backend-webassembly
@llvm/pr-subscribers-clang
Author: Joseph Huber (jhuber6)
Changes
Summary:
Currently, we want to use the OpenCL attributes to indicate the address
space. Languages like SYCL, OpenMP, HIP, and CUDA allow their address
space qualifiers
https://github.com/MaxEW707 closed
https://github.com/llvm/llvm-project/pull/112066
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: Max Winkler
Date: 2024-10-14T12:22:25-07:00
New Revision: 9bf68c2400e8966511332dfbf5c0f05e8a3300fa
URL:
https://github.com/llvm/llvm-project/commit/9bf68c2400e8966511332dfbf5c0f05e8a3300fa
DIFF:
https://github.com/llvm/llvm-project/commit/9bf68c2400e8966511332dfbf5c0f05e8a3300fa.diff
L
https://github.com/shiltian edited
https://github.com/llvm/llvm-project/pull/108786
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: Florian Mayer
Date: 2024-10-14T12:31:49-07:00
New Revision: e052c4c2b9a051fb9fd6a4bc25dc48ed9e1c6a69
URL:
https://github.com/llvm/llvm-project/commit/e052c4c2b9a051fb9fd6a4bc25dc48ed9e1c6a69
DIFF:
https://github.com/llvm/llvm-project/commit/e052c4c2b9a051fb9fd6a4bc25dc48ed9e1c6a69.diff
https://github.com/fmayer closed
https://github.com/llvm/llvm-project/pull/112050
___
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.
LGTM
https://github.com/llvm/llvm-project/pull/111856
___
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/112241
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -1774,6 +1795,54 @@ void AggExprEmitter::VisitCXXParenListOrInitListExpr(
}
}
}
+ if (ZeroInitPadding) {
+uint64_t TotalSize = CGF.getContext().toBits(
+Dest.getPreferredSize(CGF.getContext(), DestLV.getType()));
+DoZeroInitPadding(PaddingStart,
https://github.com/efriedma-quic approved this pull request.
LGTM
https://github.com/llvm/llvm-project/pull/110051
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/efriedma-quic edited
https://github.com/llvm/llvm-project/pull/110051
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
JessehMSFT wrote:
Friendly ping @mydeveloperday
https://github.com/llvm/llvm-project/pull/109497
___
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-driver
Author: Petr Hosek (petrhosek)
Changes
This addresses an issue introduced in #112041.
---
Full diff: https://github.com/llvm/llvm-project/pull/112249.diff
1 Files Affected:
- (modified) clang/lib/Driver/ToolChains/HIPUtility.cpp (+7-6)
https://github.com/petrhosek created
https://github.com/llvm/llvm-project/pull/112249
This addresses an issue introduced in #112041.
>From 8f2e6b76edf09812cfb9a26b13ebcadf711f8b8e Mon Sep 17 00:00:00 2001
From: Petr Hosek
Date: Mon, 14 Oct 2024 18:49:29 +
Subject: [PATCH] [HIP] Suport LLVM
https://github.com/shiltian edited
https://github.com/llvm/llvm-project/pull/108786
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
asudarsa wrote:
Good point. I will create them inside the test case. I was trying to 'mimic'
device library file usage. I suppose it's overkill. Thanks.
https://github.com/llvm/llvm-project/pull/112245
___
cfe-commit
Author: Petr Hosek
Date: 2024-10-14T12:43:38-07:00
New Revision: 66723a07d8c5e83329a37766c4cccfc4dbe6bb67
URL:
https://github.com/llvm/llvm-project/commit/66723a07d8c5e83329a37766c4cccfc4dbe6bb67
DIFF:
https://github.com/llvm/llvm-project/commit/66723a07d8c5e83329a37766c4cccfc4dbe6bb67.diff
LO
https://github.com/petrhosek closed
https://github.com/llvm/llvm-project/pull/112249
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -466,7 +467,7 @@ void HIP::constructGenerateObjFileFromHIPFatBinary(
"-o", Output.getFilename(),
"-x", "assembler",
ObjinFile, "-c"};
- const char *Clang = Args.MakeArgString(C.getDriver().ClangE
@@ -95,7 +95,19 @@ void SPIRV::Linker::ConstructJob(Compilation &C, const
JobAction &JA,
CmdArgs.push_back("-o");
CmdArgs.push_back(Output.getFilename());
+ // Use of --sycl-link will call the clang-sycl-link-wrapper instead of
+ // the default linker (spirv-link).
+ i
@@ -1505,6 +1505,10 @@ class TargetInfo : public TransferrableTargetInfo,
bool supportsIFunc() const {
if (getTriple().isOSBinFormatMachO())
return true;
+if (getTriple().isOSWindows() && getTriple().isAArch64())
+ return true;
+if (getTriple().getArch(
jhuber6 wrote:
> I think the default AS is expected to be losslessly converted to other AS but
> not the other way around, though I understand it is not clearly stated in
> LangRef or other places and a lot of code just assumes it can.
All the other language address spaces (cuda, OpenMP, sycl)
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 c4131cb56c9de616442525b1f02162eb470df1f8
f173e127c135f88ea37aef26010583078063c202 --e
https://github.com/ronlieb approved this pull request.
https://github.com/llvm/llvm-project/pull/112274
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
kateinoigakukun wrote:
Sorry, I opened a build fix PR here
https://github.com/llvm/llvm-project/pull/112275
https://github.com/llvm/llvm-project/pull/112274
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman
https://github.com/zyn0217 closed
https://github.com/llvm/llvm-project/pull/112177
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: Younan Zhang
Date: 2024-10-15T12:52:31+08:00
New Revision: 3733b0cff314e1427b1a905e6e7438b536f9a96d
URL:
https://github.com/llvm/llvm-project/commit/3733b0cff314e1427b1a905e6e7438b536f9a96d
DIFF:
https://github.com/llvm/llvm-project/commit/3733b0cff314e1427b1a905e6e7438b536f9a96d.diff
https://github.com/awson updated https://github.com/llvm/llvm-project/pull/96464
>From 096b999120cc28844d780acbc16f8308b3a54160 Mon Sep 17 00:00:00 2001
From: awson
Date: Mon, 24 Jun 2024 10:34:51 +0300
Subject: [PATCH 1/3] [Clang][Sema] don't handle ArraySize/AllocType early.
---
clang/lib/Se
arsenm wrote:
> I'm thinking we could have a language option like
> `-fimplicit-default-addrspace-cast` that allows all conversions to default.
> Then if we want users to be aware that this even exists we could suggest it
> in the error message if it would fix it.
>
> I do understand that the
thesamesam wrote:
cc @glaubitz (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113341)
https://github.com/llvm/llvm-project/pull/111995
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
=?utf-8?q?Hervé?= Poussineau ,
=?utf-8?q?Hervé?= Poussineau ,
=?utf-8?q?Hervé?= Poussineau ,
=?utf-8?q?Hervé?= Poussineau ,
=?utf-8?q?Hervé?= Poussineau ,
=?utf-8?q?Hervé?= Poussineau ,
=?utf-8?q?Hervé?= Poussineau ,
=?utf-8?q?Hervé?= Poussineau ,
=?utf-8?q?Hervé?= Poussineau ,
=?utf-8?q?Hervé?= Po
https://github.com/njriasan updated
https://github.com/llvm/llvm-project/pull/112162
>From e5a70cb2f9d744716e376ec0939645a7b0365ead Mon Sep 17 00:00:00 2001
From: Nicholas Riasanovsky
Date: Mon, 14 Oct 2024 01:42:39 -0400
Subject: [PATCH] Replace _not_ in reserved-identifier.rst from the clang-
jhuber6 wrote:
Testing like that is fine, it's just that you can do `clang_cc1 -emit-llvm %s
-o %t.bc` or something.
https://github.com/llvm/llvm-project/pull/112245
___
cfe-commits mailing list
cfe-commits@lists.llv
https://github.com/a-tarasyuk updated
https://github.com/llvm/llvm-project/pull/112081
>From 67c41612085489a2a17eec49f98dbfa0e5bb97cf Mon Sep 17 00:00:00 2001
From: Oleksandr T
Date: Sat, 12 Oct 2024 08:27:51 +0300
Subject: [PATCH] [Clang] fix range calculation for conditionals with throw
expr
https://github.com/dpalermo closed
https://github.com/llvm/llvm-project/pull/112274
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
dpalermo wrote:
> Sorry, I opened a build fix PR here #112275
Thanks for the fix! Closing revert.
https://github.com/llvm/llvm-project/pull/112274
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo
@@ -2,7 +2,7 @@
; RUN: llvm-as -o %t.o %s
; RUN: llvm-as -o %t2.o %S/Inputs/libcall-archive.ll
; RUN: llvm-ar rcs %t.a %t2.o
-; RUN: wasm-ld -o %t %t.o %t.a
+; RUN: wasm-ld -mllvm -mattr=-bulk-memory -o %t %t.o %t.a
sbc100 wrote:
Why is this needed? Should th
Baiyi27 wrote:
> This feature works as intended, it is only for filtering out diagnosed
> issues, not for skipping the analysis in those files. See #52959 for the
> feature you are looking for. TLDR: clang-tidy currently does not skip the
> analysis in (system) header files, `exclude-header-fi
@@ -192,13 +201,13 @@ GetAffectingModuleMaps(const Preprocessor &PP, Module
*RootModule) {
// The containing module map is affecting, because it's being pointed
// into by Module::DefinitionLoc.
- if (auto FE = MM.getContainingModuleMapFile(Mod))
-Mod
Author: Owen Pan
Date: 2024-10-14T19:29:44-07:00
New Revision: ee6468494e08651ec7f534781693408f34a74753
URL:
https://github.com/llvm/llvm-project/commit/ee6468494e08651ec7f534781693408f34a74753
DIFF:
https://github.com/llvm/llvm-project/commit/ee6468494e08651ec7f534781693408f34a74753.diff
LOG:
@@ -10057,15 +10057,18 @@ void ASTReader::finishPendingActions() {
// For a function defined inline within a class template, force the
// canonical definition to be the one inside the canonical definition of
// the template. This ensures that we instantiate fr
@@ -721,7 +721,9 @@ class Qualifiers {
// to implicitly cast into the default address space.
(A == LangAS::Default &&
(B == LangAS::cuda_constant || B == LangAS::cuda_device ||
- B == LangAS::cuda_shared));
+ B == LangAS
asudarsa wrote:
Hi @jhuber6
Thanks much for providing your feedback. I will address all your comments in an
upcoming commit.
Sincerely
https://github.com/llvm/llvm-project/pull/112245
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://
efriedma-quic wrote:
/cherry-pick 9bf68c2400e8966511332dfbf5c0f05e8a3300fa
https://github.com/llvm/llvm-project/pull/112066
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/efriedma-quic milestoned
https://github.com/llvm/llvm-project/pull/112066
___
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/112177
>From 78657277495bbd1f82faef655c49320a4315272f Mon Sep 17 00:00:00 2001
From: Younan Zhang
Date: Mon, 14 Oct 2024 17:42:17 +0800
Subject: [PATCH 1/4] [Clang] Fix a DeclContext mismatch when parsing nested
lambd
https://github.com/zyn0217 milestoned
https://github.com/llvm/llvm-project/pull/111804
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
zyn0217 wrote:
I'll go ahead and backport it - this bug was first introduced by sugar
preservation on CTAD guides included in the 19.x cycle.
/backport 0bc02b999a
https://github.com/llvm/llvm-project/pull/111804
___
cfe-commits mailing list
cfe-commi
awson wrote:
> If you have approvals you don't have to wait for other reviewers unless they
> have made a comment that required a change and you them to confirm the fix or
> they explicitly blocked the review.
I believe I have no write access to the repo.
Could you, please, merge this?
@cor3
https://github.com/ywgrit edited
https://github.com/llvm/llvm-project/pull/111488
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/thevar1able updated
https://github.com/llvm/llvm-project/pull/112283
>From c9db5830f95727601900aa9a87c0970ecfbf5c76 Mon Sep 17 00:00:00 2001
From: Konstantin Bogdanov
Date: Tue, 15 Oct 2024 03:06:46 +0200
Subject: [PATCH] Fix a typo
---
.../CrtpConstructorAccessibilityCheck
AlexVlx wrote:
> I think the default AS is expected to be losslessly converted to other AS but
> not the other way around, though I understand it is not clearly stated in
> LangRef or other places and a lot of code just assumes it can.
I don't think this expectation is thoroughly encoded anywh
jhuber6 wrote:
> Running into an observable situation where this is a concern means that
> either you've messed around with (non C/C++) attributes, or are linking in
> something exciting. Neither of which constitutes valid C/C++, and I'm leaning
> towards saying shouldn't be allowed to silentl
AlexVlx wrote:
> > Running into an observable situation where this is a concern means that
> > either you've messed around with (non C/C++) attributes, or are linking in
> > something exciting. Neither of which constitutes valid C/C++, and I'm
> > leaning towards saying shouldn't be allowed to
yus3710-fj wrote:
Gentle ping @MaskRay.
https://github.com/llvm/llvm-project/pull/110061
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -28,12 +28,24 @@
#include "clang/Analysis/FlowSensitive/MatchSwitch.h"
#include "clang/Analysis/FlowSensitive/TypeErasedDataflowAnalysis.h"
#include "clang/Analysis/FlowSensitive/WatchedLiteralsSolver.h"
+#include "clang/Support/Compiler.h"
#include "llvm/ADT/STLExtras.h"
https://github.com/ymand requested changes to this pull request.
https://github.com/llvm/llvm-project/pull/108051
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/fmayer ready_for_review
https://github.com/llvm/llvm-project/pull/111918
___
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-codegen
@llvm/pr-subscribers-backend-aarch64
Author: Florian Mayer (fmayer)
Changes
This greatly simplifies the code, and makes sure no optimizations are
applied that assume the bigger alignment or size, which could be
incorrect if we link together
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Florian Mayer (fmayer)
Changes
This greatly simplifies the code, and makes sure no optimizations are
applied that assume the bigger alignment or size, which could be
incorrect if we link together with non-instrumented code.
---
Full diff:
https://github.com/fsfod created
https://github.com/llvm/llvm-project/pull/112304
Update clangDaemonTweaks cmake target to set explicit symbol visibility macros
to correct mode for windows.
This will fix linker duplicate symbols errors from clangDaemonTweaks exporting
clang symbols instead of
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Thomas Fransham (fsfod)
Changes
Update clangDaemonTweaks cmake target to set explicit symbol visibility macros
to correct mode for windows.
This will fix linker duplicate symbols errors from clangDaemonTweaks exporting
clang symbols inste
=?utf-8?q?Herv=C3=A9?= Poussineau ,
=?utf-8?q?Herv=C3=A9?= Poussineau ,
=?utf-8?q?Herv=C3=A9?= Poussineau ,
=?utf-8?q?Herv=C3=A9?= Poussineau ,
=?utf-8?q?Herv=C3=A9?= Poussineau ,
=?utf-8?q?Herv=C3=A9?= Poussineau ,
=?utf-8?q?Herv=C3=A9?= Poussineau ,
=?utf-8?q?Herv=C3=A9?= Poussineau ,
=?utf-8?q?H
peterwaller-arm wrote:
OK, Thanks for the input all. I'm abandoning this change, I'm not following up
for the time being if someone is able to fix this.
Part of the problem is that it's not clear what a clean/correct cmake check
would be to determine the triple. My current thinking is that cma
https://github.com/peterwaller-arm closed
https://github.com/llvm/llvm-project/pull/109263
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/sunfishcode updated
https://github.com/llvm/llvm-project/pull/112049
>From 95ad4b292a442b56149ef7f2731671f9bd5c56c1 Mon Sep 17 00:00:00 2001
From: Dan Gohman
Date: Fri, 11 Oct 2024 13:31:13 -0700
Subject: [PATCH 1/3] [WebAssembly] Enable nontrapping-fptoint and bulk-memory
b
101 - 200 of 579 matches
Mail list logo