https://github.com/gbMattN updated
https://github.com/llvm/llvm-project/pull/166170
>From 95c5ff34c043680cbf85d7baf3e73ef7680e5854 Mon Sep 17 00:00:00 2001
From: gbMattN
Date: Fri, 31 Oct 2025 21:02:34 +
Subject: [PATCH 1/4] [TySan][Clang] Add clang flag to use tysan outlined
instrumentati
https://github.com/vchigrin updated
https://github.com/llvm/llvm-project/pull/167849
>From 0e4eb0f9772d4f272b5e217f768209991c7e21bd Mon Sep 17 00:00:00 2001
From: Vyacheslav Chigrin
Date: Thu, 13 Nov 2025 11:49:41 +0300
Subject: [PATCH 1/2] [libunwind] Faster handling of frames with missed FDE
@@ -524,6 +525,354 @@ class CoreturnStmt : public Stmt {
}
};
+/// CXXExpansionStmt - Base class for an unexpanded C++ expansion statement.
+class CXXExpansionStmt : public Stmt {
+ friend class ASTStmtReader;
+
+ ExpansionStmtDecl *ParentDecl;
+ SourceLocation ForLoc;
--
phoebewang wrote:
> OK to commit?
I think we still missing `_mm512_sqrt_ph` and `_mm_sqrt_sh`
https://github.com/llvm/llvm-project/pull/167692
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-
@@ -625,6 +625,19 @@ def FeatureF16F32DOT : ExtensionWithMArch<"f16f32dot",
"F16F32DOT", "FEAT_F16F32
def FeatureF16F32MM : ExtensionWithMArch<"f16f32mm", "F16F32MM",
"FEAT_F16F32MM",
"Enable Armv9.7-A Advanced SIMD half-precision matrix multiply-accumulate to
single-precis
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: David Pagan (ddpagan)
Changes
The variable-category 'allocatable' is explicitly noted as applying only to
Fortran. If specified in C/C++ it should generate an error. NOTE: Issue will be
filed against OpenMP 6.0 specification that restrict
medismailben wrote:
libunwind isn't formatted properly so in my understanding, I don't think we
enforce clang-format there.
https://github.com/llvm/llvm-project/pull/165066
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org
https://github.com/melver approved this pull request.
https://github.com/llvm/llvm-project/pull/167010
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -524,6 +525,354 @@ class CoreturnStmt : public Stmt {
}
};
+/// CXXExpansionStmt - Base class for an unexpanded C++ expansion statement.
+class CXXExpansionStmt : public Stmt {
+ friend class ASTStmtReader;
+
+ ExpansionStmtDecl *ParentDecl;
+ SourceLocation ForLoc;
--
https://github.com/AaronBallman commented:
Thank you for the fix! The changes should come with a release note in
`clang/docs/ReleaseNotes.rst` so users know about the fix. But also, do we need
to put it under the potentially breaking changes section because now template
specializations may sil
dwblaikie wrote:
Could you update the description to include an explanation of why the same
uniqued type might end up in two distinct `DISubprogram`s under LTO? I
guess/assume/vaguely recall it's probably due to internalizing those functions?
(like they're inline functions and in one module on
@@ -90,6 +95,11 @@ constexpr bool match_v4su(__m128i _v, unsigned a, unsigned
b, unsigned c, unsign
return v[0] == a && v[1] == b && v[2] == c && v[3] == d;
}
+constexpr bool match_v4sf(__m128 _v, float a, float b, float c, float d) {
woruyu wrote:
Fixed!
github-actions[bot] wrote:
:warning: C/C++ code linter clang-tidy found issues in your code. :warning:
You can test this locally with the following command:
```bash
git diff -U0 origin/main...HEAD --
clang-tools-extra/clang-tidy/misc/BoolBitwiseOperationCheck.cpp
clang-tools-extra/clan
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 origin/main HEAD --extensions hpp --
libunwind/src/Registers.hpp --diff_from_common_c
14 matches
Mail list logo