[clang] 5bb9c08 - [clang][Interp] Reject compound assign operators pre-C++14

2024-06-09 Thread Timm Bäder via cfe-commits
def unsigned long long uint64_t; typedef unsigned int uint32_t; _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] 69cd2d2 - [clang][Interp] Handle __extension__ for complex values

2024-06-09 Thread Timm Bäder via cfe-commits
tic_assert(__imag(__extension__ A) == 0, ""); + void func(void) { __complex__ int arr; _Complex int result; ___________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang] Cover CWG issues about `export template` (PR #94876)

2024-06-09 Thread via cfe-commits
diagnostic funny, we would be better of saying that modules are a c++20 feature). https://github.com/llvm/llvm-project/pull/94876 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] cb8e936 - [clang][Interp] Implement ~ operator for complex values

2024-06-09 Thread Timm Bäder via cfe-commits
;); static_assert(__imag(Doubles[3]) == 0.0, ""); +static_assert(~(0.5 + 1.5j) == (0.5 + -1.5j), ""); + void func(void) { __complex__ int arr; _Complex int result; _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Sema][CTAD] Allow user defined conversion for copy-list-initialization (PR #94752)

2024-06-09 Thread Gábor Spaits via cfe-commits
ted-note {{insert an explicit cast to silence this issue}} } _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Sema][CTAD] Allow user defined conversion for copy-list-initialization (PR #94752)

2024-06-09 Thread Gábor Spaits via cfe-commits
pull/94752 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[jenkinsci/github-plugin]

2024-06-09 Thread 'Kanstantsin Shautsou' via Jenkins Commits
Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/github-plugin

[clang-tools-extra] [clang-tidy] Added bugprone-exception-rethrow check (PR #86448)

2024-06-09 Thread Piotr Zegar via cfe-commits
tation. It's not being duplicated in pre-check doc. https://github.com/llvm/llvm-project/pull/86448 _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] Added bugprone-exception-rethrow check (PR #86448)

2024-06-09 Thread Piotr Zegar via cfe-commits
se positives in PiotrZSL wrote: Done https://github.com/llvm/llvm-project/pull/86448 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] Added bugprone-exception-rethrow check (PR #86448)

2024-06-09 Thread Piotr Zegar via cfe-commits
ment is used outside a catch block, it PiotrZSL wrote: Done https://github.com/llvm/llvm-project/pull/86448 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] Added bugprone-exception-rethrow check (PR #86448)

2024-06-09 Thread Piotr Zegar via cfe-commits
e issues, it is advisable to utilize ``throw;`` statements to PiotrZSL wrote: Done https://github.com/llvm/llvm-project/pull/86448 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] Added bugprone-exception-rethrow check (PR #86448)

2024-06-09 Thread Piotr Zegar via cfe-commits
throw")) { +diag(MatchedEmptyThrow->getThrowLoc(), + "empty 'throw' outside a catch block with no operand triggers " ---- PiotrZSL wrote: Done https://github.com/llvm/llvm-project/pull/86448 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] Added bugprone-exception-rethrow check (PR #86448)

2024-06-09 Thread Piotr Zegar via cfe-commits
w' outside a catch block with no operand triggers 'std::terminate()' [bugprone-exception-rethrow] +// CHECK-MESSAGES: :[[@LINE-1]]:5: warning: empty 'throw' outside a catch block triggers 'std::terminate()' [bugprone-exception-rethrow] } catch(...) { } } @@ -98,6 +98,6 @@ void rethrow_in_lambda() { throw 5; } catch(...) { auto lambda = [] { throw; }; -// CHECK-MESSAGES: :[[@LINE-1]]:24: warning: empty 'throw' outside a catch block with no operand triggers 'std::terminate()' [bugprone-exception-rethrow] +// CHECK-MESSAGES: :[[@LINE-1]]:24: warning: empty 'throw' outside a catch block triggers 'std::terminate()' [bugprone-exception-rethrow] } } ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] Added bugprone-exception-rethrow check (PR #86448)

2024-06-09 Thread Piotr Zegar via cfe-commits
https://github.com/PiotrZSL edited https://github.com/llvm/llvm-project/pull/86448 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] Added bugprone-exception-rethrow check (PR #86448)

2024-06-09 Thread Piotr Zegar via cfe-commits
ctionDecl(hasName("::std::move"))), PiotrZSL wrote: That's not necessary. As other checks doesn't do that. https://github.com/llvm/llvm-project/pull/86448 ___________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] Added bugprone-exception-rethrow check (PR #86448)

2024-06-09 Thread Piotr Zegar via cfe-commits
e strings. https://github.com/llvm/llvm-project/pull/86448 ___________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Driver] Add winsysroot alias to the GNU driver (PR #94731)

2024-06-09 Thread via cfe-commits
SH_winsdkversion>; +def : Separate<["-"], "Xmicrosoft-windows-sys-root">, + Alias<_SLASH_winsysroot>; // Ignored: ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

branch core-updates created (now 7dbf3753cc)

2024-06-09 Thread guix-commits
cbaines pushed a change to branch core-updates in repository guix. at 7dbf3753cc gnu: dico: Add libxcrypt dependency. This branch includes the following new commits: new 20238a7b2b gnu: iproute2: Update to 6.4.0. new c793853610 gnu: cups-filters: Add coreutils and sed to wrapped

branch core-updates deleted (was 0e06c9697a)

2024-06-09 Thread guix-commits
cbaines pushed a change to branch core-updates in repository guix. was 0e06c9697a gnu: Remove fontforge-20190801. This change permanently discards the following revisions: discard 0e06c9697a gnu: Remove fontforge-20190801. discard 51c7b6d76f gnu: font-gnu-freefont: Build with newer

[clang] [Driver] Add winsysroot alias to the GNU driver (PR #94731)

2024-06-09 Thread via cfe-commits
SH_winsdkversion>; +def : Separate<["-"], "Xmicrosoft-windows-sys-root">, + Alias<_SLASH_winsysroot>; // Ignored: ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Driver] Add winsysroot alias to the GNU driver (PR #94731)

2024-06-09 Thread via cfe-commits
SH_winsdkversion>; +def : Separate<["-"], "Xmicrosoft-windows-sys-root">, + Alias<_SLASH_winsysroot>; // Ignored: ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[jenkinsci/github-plugin]

2024-06-09 Thread 'Kanstantsin Shautsou' via Jenkins Commits
Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/github-plugin

[clang-tools-extra] [clang-tidy] Improve bugprone-multi-level-implicit-pointer-conversion (PR #94524)

2024-06-09 Thread Piotr Zegar via cfe-commits
https://github.com/PiotrZSL closed https://github.com/llvm/llvm-project/pull/94524 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] b55fb56 - [clang-tidy] Improve bugprone-multi-level-implicit-pointer-conversion (#94524)

2024-06-09 Thread via cfe-commits
i-level-implicit-pointer-conversion] +free((void *)p); +free(static_cast(p)); + } +} ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] Extend modernize-use-designated-initializers with new options (PR #94651)

2024-06-09 Thread Piotr Zegar via cfe-commits
https://github.com/PiotrZSL closed https://github.com/llvm/llvm-project/pull/94651 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] 31b84d4 - [clang-tidy] Extend modernize-use-designated-initializers with new options (#94651)

2024-06-09 Thread via cfe-commits
se-designated-initializers %t \ +// RUN: %check_clang_tidy -check-suffixes=,MACROS -std=c++20 %s modernize-use-designated-initializers %t \ // RUN: -- -config="{CheckOptions: {modernize-use-designated-initializers.IgnoreMacros: false}}" \ // RUN: -- -fno-delayed-template-pars

[clang-tools-extra] [clang-tidy] Ignore implicit functions in readability-implicit-bool-conversion (PR #94512)

2024-06-09 Thread Piotr Zegar via cfe-commits
https://github.com/PiotrZSL closed https://github.com/llvm/llvm-project/pull/94512 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] e329bfc - [clang-tidy] Ignore implicit functions in readability-implicit-bool-conversion (#94512)

2024-06-09 Thread via cfe-commits
perator<=>(const X&) const = default; + bool m_b; + }; + + struct Y + { + auto operator<=>(const Y&) const = default; + X m_x; + }; + + bool compare(const Y& y1, const Y& y2) + { + return y1 == y2 || y1 < y2 || y1 > y2; + } +}

[llvm-branch-commits] [clang] [clang] Implement function pointer signing and authenticated function calls (PR #93906)

2024-06-09 Thread Daniil Kovalev via llvm-branch-commits
https://github.com/kovdan01 edited https://github.com/llvm/llvm-project/pull/93906 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[jenkinsci/applitools-eyes-plugin] 8e2adb: wip - fix iframe issues

2024-06-09 Thread 'Itai Bar-Haim' via Jenkins Commits
/notifications -- You received this message because you are subscribed to the Google Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web vi

[clang] [clang] Cover CWG issues about `export template` (PR #94876)

2024-06-09 Thread Vlad Serebrennikov via cfe-commits
___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

branch core-updates updated (c8c6883398 -> 0e06c9697a)

2024-06-09 Thread guix-commits
efraim pushed a change to branch core-updates in repository guix. from c8c6883398 gnu: dico: Add libxcrypt dependency. new 9804f8c149 gnu: coeurl: Update to 0.3.1. new 51c7b6d76f gnu: font-gnu-freefont: Build with newer fontforge. new 0e06c9697a gnu: Remove fontforge-20190801.

03/03: gnu: Remove fontforge-20190801.

2024-06-09 Thread guix-commits
efraim pushed a commit to branch core-updates in repository guix. commit 0e06c9697ae25744f37ffbde967bea5c6bf5fd45 Author: Efraim Flashner AuthorDate: Thu Jun 6 13:05:33 2024 +0300 gnu: Remove fontforge-20190801. * gnu/packages/fontutils.scm (fontforge-20190801): Delete variable.

02/03: gnu: font-gnu-freefont: Build with newer fontforge.

2024-06-09 Thread guix-commits
efraim pushed a commit to branch core-updates in repository guix. commit 51c7b6d76fd763bf1793517cf1cc08ee5a4be4f7 Author: Efraim Flashner AuthorDate: Thu Jun 6 13:03:21 2024 +0300 gnu: font-gnu-freefont: Build with newer fontforge. * gnu/packages/fonts.scm

[clang] [clang][Interp] Implement complex division (PR #94892)

2024-06-09 Thread Timm Baeder via cfe-commits
;); +static_assert(__imag(IIDC) == 0, ""); + constexpr _Complex int Comma1 = {1, 2}; constexpr _Complex int Comma2 = (0, Comma1); static_assert(Comma1 == Comma1, ""); diff --git a/clang/test/SemaCXX/complex-folding.cpp b/clang/test/SemaCXX/complex-folding.cpp index 7bfd36f156ea6..f2fa93ad4795b 100644 --- a/clang/test/SemaCXX/complex-folding.cpp +++ b/clang/test/SemaCXX/complex-folding.cpp @@ -1,4 +1,5 @@ // RUN: %clang_cc1 %s -std=c++1z -fsyntax-only -verify +// RUN: %clang_cc1 %s -std=c++1z -fsyntax-only -verify -fexperimental-new-constant-interpreter // // Test the constant folding of builtin complex numbers. ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang] Cover CWG issues about `export template` (PR #94876)

2024-06-09 Thread via cfe-commits
___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang][Interp] Implement complex division (PR #94892)

2024-06-09 Thread via cfe-commits
return false; +if (T::div(ResultR, Den, Bits, )) + return false; +Result.atIndex(0).initialize(); + +// imag(Result) = ((imag(LHS) * real(RHS)) - (real(LHS) * imag(RHS))) / Den +if (T::mul(LHSI, RHSR, Bits, ) || T::mul(LHSR, RHSI, Bits, )) + return false; +if (T::sub(A, B, Bits, )) + return false; +if (T::div(ResultI, Den, Bits, )) + return false; +Result.atIndex(1).initialize()... [truncated] `` https://github.com/llvm/llvm-project/pull/94892 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang][Interp] Implement complex division (PR #94892)

2024-06-09 Thread Timm Baeder via cfe-commits
rt(__builtin_isinf_sign(__real__((__builtin_inf() + 1.0j) / (0.0 + 0.0j))) == 1); +static_assert(__builtin_isinf_sign(__imag__((1.0 + InfC) / (0.0 + 0.0j))) == 1); +static_assert(__builtin_isinf_sign(__imag__((InfInf) / (0.0 + 0.0j))) == 1); + +constexpr _Complex int IIDA = {10,20}; +constexpr _Complex int IIDB = {1,2}; +constexpr _Complex int IIDC = IIDA / IIDB; +static_assert(__real(IIDC) == 10, ""); +static_assert(__imag(IIDC) == 0, ""); + constexpr _Complex int Comma1 = {1, 2}; constexpr _Complex int Comma2 = (0, Comma1); static_assert(Comma1 == Comma1, ""); ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] Remove redundant LINK_LIBS (PR #94588)

2024-06-09 Thread Jonas Toth via cfe-commits
is not existent. The original move request was from static analysis background where they might wanted to use the class as well. https://github.com/llvm/llvm-project/pull/94588 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi

[clang-tools-extra] [clang-tidy] Ignore non-math operators in readability-math-missing-parentheses (PR #94654)

2024-06-09 Thread Piotr Zegar via cfe-commits
https://github.com/PiotrZSL closed https://github.com/llvm/llvm-project/pull/94654 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] d211abc - [clang-tidy] Ignore non-math operators in readability-math-missing-parentheses (#94654)

2024-06-09 Thread via cfe-commits
j, k; +for (j = i + 1, k = 0; j < 1; ++j) {} + } + + void f2(int i) { +int j; +for (j = i + 1; j < 1; ++j) {} + } + + void f3(int i) { +int j; +for (j = i + 1, 2; j < 1; ++j) {} + } +} _______ cfe-commits mailing list

[jenkinsci/github-plugin]

2024-06-09 Thread 'Kanstantsin Shautsou' via Jenkins Commits
Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/github-plugin

[clang] [clang][Interp] Implement Complex-complex multiplication (PR #94891)

2024-06-09 Thread via cfe-commits
(__real__(InfInf * InfInf)) == 0); + +constexpr _Complex int IIMA = {1,2}; +constexpr _Complex int IIMB = {10,20}; +constexpr _Complex int IIMC = IIMA * IIMB; +static_assert(__real(IIMC) == -30, ""); +static_assert(__imag(IIMC) == 40, ""); + constexpr _Complex int Comma1 = {1,

[clang] [clang][Interp] Implement Complex-complex multiplication (PR #94891)

2024-06-09 Thread Timm Baeder via cfe-commits
f_sign(__real__((1.0 + InfC) * (1.0 + InfC))) == -1); +static_assert(__builtin_isinf_sign(__real__(InfInf * InfInf)) == 0); + +constexpr _Complex int IIMA = {1,2}; +constexpr _Complex int IIMB = {10,20}; +constexpr _Complex int IIMC = IIMA * IIMB; +static_assert(__real(IIMC) == -30, ""); +stat

[jenkinsci/github-plugin]

2024-06-08 Thread 'Kanstantsin Shautsou' via Jenkins Commits
Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/github-plugin

[jenkinsci/github-plugin]

2024-06-08 Thread 'Kanstantsin Shautsou' via Jenkins Commits
Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/github-plugin

[clang] cc8fa1e - [clang][Interp][NFC] Refactor lvalue-to-rvalue conversion code

2024-06-08 Thread Timm Bäder via cfe-commits
t;getAsArrayTypeUnsafe())) +return CheckArrayInitialized(S, InitLoc, Ptr, CAT); + + return true; } } // namespace interp _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] Ignore non-math operators in readability-math-missing-parentheses (PR #94654)

2024-06-08 Thread Bhuminjay Soni via cfe-commits
https://github.com/11happy approved this pull request. https://github.com/llvm/llvm-project/pull/94654 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Sema][CTAD] Allow user defined conversion for copy-list-initialization (PR #94752)

2024-06-08 Thread Younan Zhang via cfe-commits
uch boilerplate that it's hard to understand the issue. https://github.com/llvm/llvm-project/pull/94752 _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Sema][CTAD] Allow user defined conversion for copy-list-initialization (PR #94752)

2024-06-08 Thread Younan Zhang via cfe-commits
expertise in CTAD. :) https://github.com/llvm/llvm-project/pull/94752 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Sema][CTAD] Allow user defined conversion for copy-list-initialization (PR #94752)

2024-06-08 Thread Younan Zhang via cfe-commits
https://github.com/zyn0217 edited https://github.com/llvm/llvm-project/pull/94752 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Clang] Fix two issues of CTAD for aggregates (PR #94889)

2024-06-08 Thread Younan Zhang via cfe-commits
// CHECK-NEXT: `-TemplateTypeParm {{.+}} 'T'{{$}} + +namespace GH83368 { + +template struct A { + int f1[N]; +}; + +A a{.f1 = {1}}; + +} // namespace GH83368 + +namespace GH64625 { +template struct X { + T t[2]; +}; + +X x = {{1, 2}}; + +} // namespace GH64625 ______

[clang-tools-extra] [llvm] [mlir] Use StringRef::starts_with (NFC) (PR #94886)

2024-06-08 Thread via cfe-commits
c == '\n'; }); line = line.drop_while([](char c) { return c == '\n'; }); return endQuery(queryRef); `` https://github.com/llvm/llvm-project/pull/94886 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [llvm] [mlir] Use StringRef::starts_with (NFC) (PR #94886)

2024-06-08 Thread Kazu Hirata via cfe-commits
(trailingWord.starts_with('#')) { line = line.drop_until([](char c) { return c == '\n'; }); line = line.drop_while([](char c) { return c == '\n'; }); return endQuery(queryRef); _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [ObjC][CodeGen] Assume a for-in loop is in bounds and cannot overflow (PR #94885)

2024-06-08 Thread via cfe-commits
r [[T2]] // CHECK-LP64-NEXT: call ptr @llvm.objc.initWeak(ptr [[X]], ptr [[T3]]) _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [ObjC][CodeGen] Assume a for-in loop is in bounds and cannot overflow (PR #94885)

2024-06-08 Thread via cfe-commits
https://github.com/AtariDreams edited https://github.com/llvm/llvm-project/pull/94885 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [CodeGen] Assume a for-in loop is in bounds and cannot overflow (PR #94885)

2024-06-08 Thread via cfe-commits
m-project/pull/94885 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [CodeGen] Assume a for-in loop is in bounds and cannot overflow (PR #94885)

2024-06-08 Thread via cfe-commits
m-project/pull/94885 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [CodeGen] Assume a for-in loop is in bounds and cannot overflow (PR #94885)

2024-06-08 Thread via cfe-commits
2]] // CHECK-LP64-NEXT: call ptr @llvm.objc.initWeak(ptr [[X]], ptr [[T3]]) _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [CodeGen] Assume a for-in loop is in bounds and cannot overflow (PR #94885)

2024-06-08 Thread via cfe-commits
https://github.com/AtariDreams ready_for_review https://github.com/llvm/llvm-project/pull/94885 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] Assume a for-in loop is in bounds and cannot overflow (PR #94883)

2024-06-08 Thread via cfe-commits
2]] // CHECK-LP64-NEXT: call ptr @llvm.objc.initWeak(ptr [[X]], ptr [[T3]]) _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] Assume a for-in loop is in bounds and cannot overflow (PR #94883)

2024-06-08 Thread via cfe-commits
https://github.com/AtariDreams closed https://github.com/llvm/llvm-project/pull/94883 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[llvm-branch-commits] [llvm] [SPARC][IAS] Add aliases for %asr20-21 as defined in JPS1 (PR #94247)

2024-06-08 Thread via llvm-branch-commits
value: %lm(sym), kind: fixup_sparc_lm sethi %lm(sym), %l0 diff --git a/llvm/test/MC/Sparc/sparcv9-instructions.s b/llvm/test/MC/Sparc/sparcv9-instructions.s index 0ca2e50989ca9..b947243f8258f 100644 --- a/llvm/test/MC/Sparc/sparcv9-instructions.s +++ b/llvm/test/MC/Sparc/sparcv9-instructions.s

[llvm-branch-commits] [llvm] [SPARC][IAS] Add support for %uhi and %ulo extensions (PR #94246)

2024-06-08 Thread via llvm-branch-commits
g3 +! V9: addx %g2, 1, %g3 ! encoding: [0x86,0x40,0xa0,0x01] +addc 1, %g2, %g3 + ! V8: error: invalid instruction mnemonic ! V8-NEXT: addccc %g1, %g2, %g3 ! V9: addxcc %g1, %g2, %g3! encoding: [0x86,0xc0,0x40,0x02] _

[jenkinsci/github-plugin]

2024-06-08 Thread 'Kanstantsin Shautsou' via Jenkins Commits
Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/github-plugin

[clang] Assume a for-in loop is in bounds and cannot overflow (PR #94883)

2024-06-08 Thread via cfe-commits
he branch weights based on the simplifying assumption that this is _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[jenkinsci/github-plugin]

2024-06-08 Thread 'Kanstantsin Shautsou' via Jenkins Commits
Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/github-plugin

[llvm-branch-commits] [msan] Handle blendv intrinsics (PR #94882)

2024-06-08 Thread Vitaly Buka via llvm-branch-commits
https://github.com/vitalybuka edited https://github.com/llvm/llvm-project/pull/94882 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [msan] Handle blendv intrinsics (PR #94882)

2024-06-08 Thread via llvm-branch-commits
int (ptr @__msan_param_tls to i64), i64 32) to ptr), align 8 +; CHECK-NEXT:[[TMP3:%.*]] = load <16 x i8>, ptr @__msan_param_tls, align 8 ; CHECK-NEXT:call void @llvm.donothing() -; CHECK-NEXT:[[_MSPROP:%.*]] = or <16 x i8> [[TMP1]], [[TMP2]] -; CHECK-NEXT:[[_MSPROP1:%.*]] = or <16 x i8> [[_MSPROP]], [[TMP3]] -; CHECK-NEXT:[[RES:%.*]] = call <16 x i8> @llvm.x86.sse41.pblendvb(<16 x i8> [[A0:%.*]], <16 x i8> [[A1:%.*]], <16 x i8> [[A2:%.*]]) -; CHECK-NEXT:store <16 x i8> [[_MSPROP1]], ptr @__msan_retval_tls, align 8 +; CHECK-NEXT:[[TMP4:%.*]] = ashr <16 x i8> [[A2:%.*]], +; CHECK-NEXT:[[TMP5:%.*]] = trunc <16 x i8> [[TMP4]] to <16 x i1> +; CHECK-NEXT:[[TMP6:%.*]] = ashr <16 x i8> [[TMP1]], +; CHECK-NEXT:[[TMP7:%.*]] = trunc <16 x i8> [[TMP6]] to <16 x i1> +; CHECK-NEXT:[[TMP8:%.*]] = select <16 x i1> [[TMP5]], <16 x i8> [[TMP2]], <16 x i8> [[TMP3]] +; CHECK-NEXT:[[TMP9:%.*]] = xor <16 x i8> [[A1:%.*]], [[A0:%.*]] +; CHECK-NEXT:[[TMP10:%.*]] = or <16 x i8> [[TMP9]], [[TMP2]] +; CHECK-NEXT:[[TMP11:%.*]] = or <16 x i8> [[TMP10]], [[TMP3]] +; CHECK-NEXT:[[_MSPROP_SELECT:%.*]] = select <16 x i1> [[TMP7]], <16 x i8> [[TMP11]], <16 x i8> [[TMP8]] +; CHECK-NEXT:[[RES:%.*]] = call <16 x i8> @llvm.x86.sse41.pblendvb(<16 x i8> [[A0]], <16 x i8> [[A1]], <16 x i8> [[A2]]) +; CHECK-NEXT:store <16 x i8> [[_MSPROP_SELECT]], ptr @__msan_retval_tls, align 8 ; CHECK-NEXT:ret <16 x i8> [[RES]] ; %res = call <16 x i8> @llvm.x86.sse41.pblendvb(<16 x i8> %a0, <16 x i8> %a1, <16 x i8> %a2) ;... [truncated] `` https://github.com/llvm/llvm-project/pull/94882 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [NFC][msan] Prepare function to extract main logic (PR #94880)

2024-06-08 Thread via llvm-branch-commits
()), - getOrigin(I.getFalseValue(); + setOrigin(, IRB.CreateSelect(Sb, Ob, IRB.CreateSelect(B, Oc, Od))); } } `` https://github.com/llvm/llvm-project/pull/94880 ___ llvm-branch-commits mailing list llvm

[llvm-branch-commits] [NFC][msan] Extract `handleSelectLikeInst` (PR #94881)

2024-06-08 Thread via llvm-branch-commits
= getShadow(D); `` https://github.com/llvm/llvm-project/pull/94881 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [msan] Handle blendv intrinsics (PR #94882)

2024-06-08 Thread via llvm-branch-commits
ptrtoint (ptr @__msan_param_tls to i64), i64 32) to ptr), align 8 +; CHECK-NEXT:[[TMP3:%.*]] = load <16 x i8>, ptr @__msan_param_tls, align 8 ; CHECK-NEXT:call void @llvm.donothing() -; CHECK-NEXT:[[_MSPROP:%.*]] = or <16 x i8> [[TMP1]], [[TMP2]] -; CHECK-NEXT:[[_MSPROP1:%.*]] = or <16 x i8> [[_MSPROP]], [[TMP3]] -; CHECK-NEXT:[[RES:%.*]] = call <16 x i8> @llvm.x86.sse41.pblendvb(<16 x i8> [[A0:%.*]], <16 x i8> [[A1:%.*]], <16 x i8> [[A2:%.*]]) -; CHECK-NEXT:store <16 x i8> [[_MSPROP1]], ptr @__msan_retval_tls, align 8 +; CHECK-NEXT:[[TMP4:%.*]] = ashr <16 x i8> [[A2:%.*]], +; CHECK-NEXT:[[TMP5:%.*]] = trunc <16 x i8> [[TMP4]] to <16 x i1> +; CHECK-NEXT:[[TMP6:%.*]] = ashr <16 x i8> [[TMP1]], +; CHECK-NEXT:[[TMP7:%.*]] = trunc <16 x i8> [[TMP6]] to <16 x i1> +; CHECK-NEXT:[[TMP8:%.*]] = select <16 x i1> [[TMP5]], <16 x i8> [[TMP2]], <16 x i8> [[TMP3]] +; CHECK-NEXT:[[TMP9:%.*]] = xor <16 x i8> [[A1:%.*]], [[A0:%.*]] +; CHECK-NEXT:[[TMP10:%.*]] = or <16 x i8> [[TMP9]], [[TMP2]] +; CHECK-NEXT:[[TMP11:%.*]] = or <16 x i8> [[TMP10]], [[TMP3]] +; CHECK-NEXT:[[_MSPROP_SELECT:%.*]] = select <16 x i1> [[TMP7]], <16 x i8> [[TMP11]], <16 x i8> [[TMP8]] +; CHECK-NEXT:[[RES:%.*]] = call <16 x i8> @llvm.x86.sse41.pblendvb(<16 x i8> [[A0]], <16 x i8> [[A1]], <16 x i8> [[A2]]) +; CHECK-NEXT:store <16 x i8> [[_MSPROP_SELECT]], ptr @__msan_retval_tls, align 8 ; CHECK-NEXT:ret <16 x i8> [[RES]] ; %res = call <16 x i8> @llvm.x86.sse41.pblendvb(<16 x i8> %a0, <16 x i8> %a1, <16 x i8> %a2) ;... [truncated] `` https://github.com/llvm/llvm-project/pull/94882 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[llvm-branch-commits] [NFC][msan] Prepare function to extract main logic (PR #94880)

2024-06-08 Thread via llvm-branch-commits
()), - getOrigin(I.getFalseValue(); + setOrigin(, IRB.CreateSelect(Sb, Ob, IRB.CreateSelect(B, Oc, Od))); } } `` https://github.com/llvm/llvm-project/pull/94880 ___ llvm-branch-commits mailing list llvm-branch

[llvm-branch-commits] [msan] Handle blendv intrinsics (PR #94882)

2024-06-08 Thread Vitaly Buka via llvm-branch-commits
https://github.com/vitalybuka created https://github.com/llvm/llvm-project/pull/94882 Then are very similar to select, so we adjust arguments and forward them into select handler. ___ llvm-branch-commits mailing list llvm-branch-commits

[llvm-branch-commits] [NFC][msan] Extract `handleSelectLikeInst` (PR #94881)

2024-06-08 Thread Vitaly Buka via llvm-branch-commits
https://github.com/vitalybuka created https://github.com/llvm/llvm-project/pull/94881 `blendv` instructions are very similar to `select`. We will add support for them in followup patches. ___ llvm-branch-commits mailing list llvm-branch-commits

[llvm-branch-commits] [NFC][msan] Prepare function to extract main logic (PR #94880)

2024-06-08 Thread Vitaly Buka via llvm-branch-commits
https://github.com/vitalybuka created https://github.com/llvm/llvm-project/pull/94880 None ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[jenkinsci/github-plugin]

2024-06-08 Thread 'Kanstantsin Shautsou' via Jenkins Commits
Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/github-plugin

[jenkinsci/github-plugin]

2024-06-08 Thread 'Kanstantsin Shautsou' via Jenkins Commits
Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/github-plugin

[jenkinsci/github-plugin]

2024-06-08 Thread 'Kanstantsin Shautsou' via Jenkins Commits
Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/github-plugin

[clang] [hexagon] Add {con, de}structive interference size defn (PR #94877)

2024-06-08 Thread via cfe-commits
); + } }; } // namespace targets } // namespace clang `` https://github.com/llvm/llvm-project/pull/94877 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [hexagon] Add {con, de}structive interference size defn (PR #94877)

2024-06-08 Thread Brian Cain via cfe-commits
32); + } }; } // namespace targets } // namespace clang ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang-format] add an option to insert a space only for non-code block empty braces, not for empty parentheses (PR #93634)

2024-06-08 Thread Kohei Asano via cfe-commits
https://github.com/khei4 converted_to_draft https://github.com/llvm/llvm-project/pull/93634 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [libcxxabi] [llvm] Add support for WASI builds (PR #91051)

2024-06-08 Thread via cfe-commits
eturn std::error_code(); return errnoAsErrorCode(); +#endif } std::error_code unlockFile(int FD) { +#if defined(__wasi__) + return std::error_code(); +#else struct flock Lock; Lock.l_type = F_UNLCK; Lock.l_whence = SEEK_SET; @@ -1264,6 +1293,7 @@ std::error_code unlockFile(int FD) { if (::fcntl(FD, F_SETLK, ... [truncated] `` https://github.com/llvm/llvm-project/pull/91051 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [libcxxabi] [llvm] Add support for WASI builds (PR #91051)

2024-06-08 Thread via cfe-commits
eturn std::error_code(); return errnoAsErrorCode(); +#endif } std::error_code unlockFile(int FD) { +#if defined(__wasi__) + return std::error_code(); +#else struct flock Lock; Lock.l_type = F_UNLCK; Lock.l_whence = SEEK_SET; @@ -1264,6 +1293,7 @@ std::error_code unlockFile(int FD) { if (::fcntl(FD, F_SETLK, ... [truncated] `` https://github.com/llvm/llvm-project/pull/91051 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [libcxxabi] [llvm] Add support for WASI builds (PR #91051)

2024-06-08 Thread via cfe-commits
(FD, F_SETLKW, ) != -1) return std::error_code(); return errnoAsErrorCode(); +#endif } std::error_code unlockFile(int FD) { +#if defined(__wasi__) + return std::error_code(); +#else struct flock Lock; Lock.l_type = F_UNLCK; Lock.l_whence = SEEK_SET; @@ -1264,6 +1293,7 @@ std::error_code unlockFile(int FD) { if (::fcntl(FD, F_SETLK, ... [truncated] `` https://github.com/llvm/llvm-project/pull/91051 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [libcxxabi] [llvm] Add support for WASI builds (PR #91051)

2024-06-08 Thread Luca Versari via cfe-commits
ngSocket::createUnix(StringRef SocketPath, #else return ListeningSocket{Socket, SocketPath, PipeFD}; #endif // _WIN32 +#endif } Expected> ListeningSocket::accept(std::chrono::milliseconds Timeout) { +#ifdef __wasi__ + return llvm::make_error(getLastSocketErrorCode(), +

[jenkinsci/github-plugin]

2024-06-08 Thread 'Kanstantsin Shautsou' via Jenkins Commits
Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/github-plugin

[jenkinsci/github-plugin]

2024-06-08 Thread 'Kanstantsin Shautsou' via Jenkins Commits
Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/github-plugin

[clang-tools-extra] [clang-tidy] In C++17, callee is guaranteed to be sequenced before arguments. (PR #93623)

2024-06-08 Thread Kefu Chai via cfe-commits
https://github.com/tchaikov edited https://github.com/llvm/llvm-project/pull/93623 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] In C++17, callee is guaranteed to be sequenced before arguments. (PR #93623)

2024-06-08 Thread Kefu Chai via cfe-commits
tchaikov wrote: @5chmidti hi Julian, thank you for your review, suggestions and approval. updated accordingly. https://github.com/llvm/llvm-project/pull/93623 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin

[clang-tools-extra] [clang-tidy] In C++17, callee is guaranteed to be sequenced before arguments. (PR #93623)

2024-06-08 Thread Kefu Chai via cfe-commits
to be referenced. https://github.com/llvm/llvm-project/pull/93623 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] In C++17, callee is guaranteed to be sequenced before arguments. (PR #93623)

2024-06-08 Thread Kefu Chai via cfe-commits
// CHECK-NOTES: [[@LINE-1]]:11: warning: 'val' used after it was moved s{std::move(val)} {} // wrong order // CHECK-NOTES: [[@LINE-1]]:9: note: move occurred here - // CHECK-NOTES: [[@LINE-4]]:11: note: the use happens in a later loop iteration than the move private: bool a; ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] In C++17, callee is guaranteed to be sequenced before arguments. (PR #93623)

2024-06-08 Thread Kefu Chai via cfe-commits
https://github.com/tchaikov edited https://github.com/llvm/llvm-project/pull/93623 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] In C++17, callee is guaranteed to be sequenced before arguments. (PR #93623)

2024-06-08 Thread Kefu Chai via cfe-commits
https://github.com/tchaikov edited https://github.com/llvm/llvm-project/pull/93623 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] In C++17, callee is guaranteed to be sequenced before arguments. (PR #93623)

2024-06-08 Thread Kefu Chai via cfe-commits
https://github.com/tchaikov edited https://github.com/llvm/llvm-project/pull/93623 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] In C++17, callee is guaranteed to be sequenced before arguments. (PR #93623)

2024-06-08 Thread Kefu Chai via cfe-commits
ap. but if you believe it's safe to do so. will allocate it on stack. https://github.com/llvm/llvm-project/pull/93623 ___________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [clang-tidy] In C++17, callee is guaranteed to be sequenced before arguments. (PR #93623)

2024-06-08 Thread Kefu Chai via cfe-commits
#discussion_r1631614642. but please note, it's just for the sake of readability / consistency, not for the correctness. https://github.com/llvm/llvm-project/pull/93623 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman

[clang] [clang] Cover CWG issues about `export template` (PR #94876)

2024-06-08 Thread via cfe-commits
eport implementation status https://cplusplus.github.io/CWG/issues/820.html;>820 CD2 Deprecation of export -Unknown +Clang 2.7 https://cplusplus.github.io/CWG/issues/822.html;>822 `` https://github.com/llvm/llvm-project/pull/94876 _

[clang] [clang] Cover CWG issues about `export template` (PR #94876)

2024-06-08 Thread Vlad Serebrennikov via cfe-commits
le purview}} export template void f() {} -// expected-warning@-1 {{exported templates are unsupported}} +// cxx98-17-warning@-1 {{exported templates are unsupported}} +// since-cxx20-error@-2 {{export declaration can only be used within a module purview}} } namespace cwg873 { // cwg873: 3.

[jenkinsci/github-plugin]

2024-06-08 Thread 'Kanstantsin Shautsou' via Jenkins Commits
Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/github-plugin

  1   2   3   4   5   6   7   8   9   10   >