https://github.com/HighCommander4 updated
https://github.com/llvm/llvm-project/pull/153337
>From fc114ff8874f3994557a3dced97443d644f3a408 Mon Sep 17 00:00:00 2001
From: Nathan Ridge
Date: Tue, 12 Aug 2025 22:54:32 -0400
Subject: [PATCH] [clangd] Retrieve documentation for class member instance
llvmbot wrote:
@llvm/pr-subscribers-clang-tidy
Author: Dasha Buka (dvbuka)
Changes
closes #157294
Renamed NonTrivialTypesLibcMemoryCallsCheck to
LibcMemoryCallsOnNonTrivialTypesCheck for a little more clarity as well.
---
Full diff: https://github.com/llvm/llvm-project/pull/162039.diff
https://github.com/dvbuka created
https://github.com/llvm/llvm-project/pull/162039
closes #157294
Renamed NonTrivialTypesLibcMemoryCallsCheck to
LibcMemoryCallsOnNonTrivialTypesCheck for a little more clarity as well.
>From 236cee683ac84ebd7ac6cd41f0d78020c312f68c Mon Sep 17 00:00:00 2001
Fr
steffenlarsen wrote:
> Do we need similar checks anywhere else we check isPackedVectorBoolType?
Luckily that case was already handled
[here](https://github.com/llvm/llvm-project/pull/161796/files#diff-328fcdcf882c121d5c56fdc6cd56c43fdbbb00da171da70f3ba6982c43686a63L2097-L2098)
and now
[here](
@@ -2817,6 +2817,46 @@ static bool interp__builtin_ia32_pshuf(InterpState &S,
CodePtr OpPC,
return true;
}
+static bool interp__builtin_ia32_movmsk_op(InterpState &S, CodePtr OpPC,
+ const CallExpr *Call) {
+ assert(Call->getNumArg
LuoYuanke wrote:
> Am I missing something, we still have `CUDAAllowVariadicFunctions`.
I understand now. Revised.
https://github.com/llvm/llvm-project/pull/161350
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/
@@ -3162,7 +3143,10 @@ bool InterpretBuiltin(InterpState &S, CodePtr OpPC,
const CallExpr *Call,
case Builtin::BI_rotl:
case Builtin::BI_lrotl:
case Builtin::BI_rotl64:
-return interp__builtin_rotate(S, OpPC, Frame, Call, /*Right=*/false);
+return interp__builtin
https://github.com/mizvekov closed
https://github.com/llvm/llvm-project/pull/161986
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder `clang-armv8-quick` running
on `linaro-clang-armv8-quick` while building `clang,llvm` at step 5 "ninja
check 1".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/154/builds/22292
Here is the relevant p
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Amr Hesham (AmrDeveloper)
Changes
Update Complex CXX new test to use regex for variable names
---
Full diff: https://github.com/llvm/llvm-project/pull/162024.diff
1 Files Affected:
- (modified) clang/test/CIR/CodeGen/new.cpp (+7-7)
`
@@ -925,7 +925,10 @@ void ContinuationIndenter::addTokenOnCurrentLine(LineState
&State, bool DryRun,
TT_TableGenDAGArgOpenerToBreak) &&
!(Current.MacroParent && Previous.MacroParent) &&
(Current.isNot(TT_LineComment) ||
- Previous.isOn
@@ -2975,6 +2975,75 @@ static bool interp__builtin_vec_set(InterpState &S,
CodePtr OpPC,
return true;
}
+static bool interp__builtin_x86_psrldq_byteshift(InterpState &S, CodePtr OpPC,
+ const CallExpr *Call,
+
@@ -2975,6 +2975,75 @@ static bool interp__builtin_vec_set(InterpState &S,
CodePtr OpPC,
return true;
}
+static bool interp__builtin_x86_psrldq_byteshift(InterpState &S, CodePtr OpPC,
+ const CallExpr *Call,
+
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Ye Tian (TianYe717)
Changes
Fixes [issue](https://github.com/llvm/llvm-project/issues/160509)
---
Patch is 21.28 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/162005.diff
8 Files Affected:
https://github.com/TianYe717 ready_for_review
https://github.com/llvm/llvm-project/pull/162005
___
cfe-commits mailing list
[email protected]
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/161953
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/Lancern updated
https://github.com/llvm/llvm-project/pull/161631
>From 1962fbea341e4a0148eaed4af39063975936412a Mon Sep 17 00:00:00 2001
From: Sirui Mu
Date: Thu, 2 Oct 2025 14:13:11 +0800
Subject: [PATCH] [CIR] Atomic fetch operation
This patch adds CIR support for atomic f
https://github.com/Lancern created
https://github.com/llvm/llvm-project/pull/162011
CodeGen for the builtin function `__atomic_min_fetch` and `__atomic_max_fetch`
would emit an `atomicrmw` instruction followed by an `icmp` instruction on
integral arguments. However, for floating point argument
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 c,cpp --
clang/lib/CIR/CodeGen/CIRGenAtomic.cpp clang/l
https://github.com/Lancern updated
https://github.com/llvm/llvm-project/pull/161631
>From c2061cc3f44e896b6cf05483c1780344f12b864f Mon Sep 17 00:00:00 2001
From: Sirui Mu
Date: Thu, 2 Oct 2025 14:13:11 +0800
Subject: [PATCH] [CIR] Atomic fetch operation
This patch adds CIR support for atomic f
@@ -601,6 +601,60 @@ def CIR_VTableAttr : CIR_Attr<"VTable", "vtable",
[TypedAttrInterface]> {
}];
}
+//===--===//
+// DynamicCastInfoAttr
+//===-
https://github.com/RKSimon created
https://github.com/llvm/llvm-project/pull/162004
None
>From cce577535762df5ca867c6d5b99a3a44bd1ee68b Mon Sep 17 00:00:00 2001
From: Simon Pilgrim
Date: Sun, 5 Oct 2025 11:48:54 +0100
Subject: [PATCH] [clang][Sema] NormalizedConstraint - fix MSVC "not all
con
@@ -3162,7 +3143,10 @@ bool InterpretBuiltin(InterpState &S, CodePtr OpPC,
const CallExpr *Call,
case Builtin::BI_rotl:
case Builtin::BI_lrotl:
case Builtin::BI_rotl64:
-return interp__builtin_rotate(S, OpPC, Frame, Call, /*Right=*/false);
+return interp__builtin
https://github.com/Lancern edited
https://github.com/llvm/llvm-project/pull/161631
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/sarnex closed
https://github.com/llvm/llvm-project/pull/161287
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/snarang181 edited
https://github.com/llvm/llvm-project/pull/162000
___
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
26 matches
Mail list logo