[clang] [Clang] Add __builtin_is_within_lifetime to implement P2641R4's std::is_within_lifetime (PR #91895)

2024-05-12 Thread Mital Ashok via cfe-commits
, but some of them should be true. https://github.com/llvm/llvm-project/pull/91895 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Clang] Add __builtin_is_within_lifetime to implement P2641R4's std::is_within_lifetime (PR #91895)

2024-05-12 Thread via cfe-commits
s (allow non-const qualified too) + // (e.g., `false ? true : + // std::is_within_lifetime(static_cast(nullptr));` is fine) + // However, `std::is_within_lifetime` will only take pointer types (allow + // non-const qualified too) if (!ParamTy->isPointerType()) { -S.Diag(TheCal

[clang] [Clang] Add __builtin_is_within_lifetime to implement P2641R4's std::is_within_lifetime (PR #91895)

2024-05-12 Thread Mital Ashok via cfe-commits
not a constant expression}} +// expected-error@-2 {{'__builtin_is_within_lifetime' cannot be called with a one-past-the-end pointer}} +} + +template +consteval bool allow_bad_types_unless_used(bool b, T* p) { + if (b) { +__builtin_is_within_lifetime(p); // #bad_type_used + } + return true; +} +void fn(); +static_assert(allow_bad_types_unless_used(false, )); +void g() { + allow_bad_types_unless_used(true, ); +// expected-error@-1 {{call to consteval function 'allow_bad_types_unless_used' is not a constant expression}} +// expected-error@#bad_type_used {{'__builtin_is_within_lifetime' cannot be called with a function pointer}} +} + +struct OptBool { + union { bool b; char c; }; + + // note: this assumes common implementation properties for bool and char: + // * sizeof(bool) == sizeof(char), and + // * the value representations for true and false are distinct + // from the value representation for 2 + constexpr OptBool() : c(2) { } + constexpr OptBool(bool b) : b(b) { } + + constexpr auto has_value() const -> bool { +if consteval { + return __builtin_is_within_lifetime(); // during constant evaluation, cannot read from c +} else { + return c != 2;// during runtime, must read from c +} + } + + constexpr auto operator*() const -> const bool& { +return b; + } +}; + +constexpr OptBool disengaged; +constexpr OptBool engaged(true); +static_assert(!disengaged.has_value()); +static_assert(engaged.has_value()); +static_assert(*engaged); ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Clang] Add attribute for consteval builtins; Declare constexpr builtins as constexpr in C++ (PR #91894)

2024-05-12 Thread via cfe-commits
*__builtin_assume_aligned(const void *, size_t, ...) throw(); +constexpr void *__builtin_assume_aligned(const void *, size_t, ...) throw(); + +// expected-error@+1 {{constexpr declaration of '__builtin_calloc' follows non-constexpr declaration}} +constexpr void *__builtin_calloc(size_t, size_t); +//

[clang] [Clang] Add attribute for consteval builtins; Declare constexpr builtins as constexpr in C++ (PR #91894)

2024-05-12 Thread Mital Ashok via cfe-commits
tin_assume_aligned(const void *, size_t, ...) throw(); +constexpr void *__builtin_assume_aligned(const void *, size_t, ...) throw(); + +// expected-error@+1 {{constexpr declaration of '__builtin_calloc' follows non-constexpr declaration}} +constexpr void *__builtin_calloc(size_t, size_t); +// expected-note@-1 {{previous declaration is here}} #endif ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [analyzer] Allow recursive functions to be trivial. (PR #91876)

2024-05-12 Thread Mital Ashok via cfe-commits
y changing `TrivialFunctionAnalysisVisitor` to not call `isTrivialImpl` for the current function only. https://github.com/llvm/llvm-project/pull/91876 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

branch master updated: gnu: Add python-overpass.

2024-05-12 Thread guix-commits
This is an automated email from the git hooks/post-receive script. andreas pushed a commit to branch master in repository guix. The following commit(s) were added to refs/heads/master by this push: new 89cd778f6a gnu: Add python-overpass. 89cd778f6a is described below commit

[clang] [llvm] [BPF] Fix linking issues in static map initializers (PR #91310)

2024-05-12 Thread Eli Friedman via cfe-commits
ables). https://github.com/llvm/llvm-project/pull/91310 _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Clang] Added check for unexpanded pack in attribute [[assume]] (PR #91893)

2024-05-12 Thread via cfe-commits
lvm/llvm-project/pull/91893 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Clang] Added check for unexpanded pack in attribute [[assume]] (PR #91893)

2024-05-12 Thread via cfe-commits
). You can also ask questions in a comment on this PR, on the [LLVM Discord](https://discord.com/invite/xS7Z362) or on the [forums](https://discourse.llvm.org/). https://github.com/llvm/llvm-project/pull/91893 _______ cfe-commits mailing list cfe-commits@lists.l

[clang] [Clang] Added check for unexpanded pack in attribute [[assume]] (PR #91893)

2024-05-12 Thread Azmat Yusuf via cfe-commits
void f() { +[[assume(val)]]; // expected-error {{expression contains unexpanded parameter pack}} +} ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

02/11: gnu: tmux: Update to 3.4.

2024-05-12 Thread guix-commits
cbaines pushed a commit to branch master in repository guix. commit 0dac1307ccc9a04df49080f3c76b1018268d7d68 Author: Ashish SHUKLA AuthorDate: Wed May 8 14:27:10 2024 +0100 gnu: tmux: Update to 3.4. * gnu/packages/tmux.scm (tmux): Update to 3.4. [native-inputs]: Add bison.

01/11: gnu: Add m8c.

2024-05-12 Thread guix-commits
cbaines pushed a commit to branch master in repository guix. commit 0eaae8e4d442b0337b62d38a0b20649fd5fbbc61 Author: Juliana Sims AuthorDate: Sat Apr 20 11:09:10 2024 -0400 gnu: Add m8c. * gnu/packages/electronics.scm (m8c): New variable. Change-Id:

09/11: gnu: adns: Update to 1.6.1.

2024-05-12 Thread guix-commits
cbaines pushed a commit to branch master in repository guix. commit 8b81fae667619efdcae9f01d25e32c471452e259 Author: Andy Tai AuthorDate: Mon May 6 21:41:01 2024 -0700 gnu: adns: Update to 1.6.1. * gnu/packages/adns.scm (adns): Update to 1.6.1. Change-Id:

11/11: gnu: ruby-gem-hadar: Use git-minimal/pinned.

2024-05-12 Thread guix-commits
cbaines pushed a commit to branch master in repository guix. commit 7b2e7ff25a58412757100d401b50f6e39b3da354 Author: Christopher Baines AuthorDate: Mon Apr 29 21:23:07 2024 +0100 gnu: ruby-gem-hadar: Use git-minimal/pinned. This helps reduce the dependencies on git, as I think it's

04/11: gnu: guile-tap: Update to 0.5.1.

2024-05-12 Thread guix-commits
cbaines pushed a commit to branch master in repository guix. commit d2b9736c5e4c87af8264304d528c517633a282aa Author: Frank Terbeck AuthorDate: Fri May 3 13:22:23 2024 +0200 gnu: guile-tap: Update to 0.5.1. * gnu/packages/guile-xyz.scm (guile-tap): Update to 0.5.1. [arguments]:

10/11: gnu: alfa: Don't run tests on riscv64-linux.

2024-05-12 Thread guix-commits
cbaines pushed a commit to branch master in repository guix. commit 418710ccc06f27b808c5e485075312ea406e42db Author: Christopher Baines AuthorDate: Wed May 1 10:52:19 2024 +0100 gnu: alfa: Don't run tests on riscv64-linux. As the test suite seems to consume all the disk space.

07/11: gnu: nano: Update to 8.0.

2024-05-12 Thread guix-commits
cbaines pushed a commit to branch master in repository guix. commit 8643bb4a82ae4c906e79e3a1e7f60124b3b0d7c3 Author: Andy Tai AuthorDate: Wed May 1 09:04:53 2024 -0700 gnu: nano: Update to 8.0. * gnu/packages/text-editors.scm (nano): Update to 8.0. Change-Id:

branch master updated (56980ea500 -> 7b2e7ff25a)

2024-05-12 Thread guix-commits
cbaines pushed a change to branch master in repository guix. from 56980ea500 gnu: python-xcffib: Update to 1.4.0. new 0eaae8e4d4 gnu: Add m8c. new 0dac1307cc gnu: tmux: Update to 3.4. new ca571f4259 gnu: Add python-vdf. new d2b9736c5e gnu: guile-tap: Update to 0.5.1.

03/11: gnu: Add python-vdf.

2024-05-12 Thread guix-commits
cbaines pushed a commit to branch master in repository guix. commit ca571f4259df82500c687effcdb7d11904a52e6c Author: Giacomo Leidi via Guix-patches via AuthorDate: Wed Apr 17 10:34:44 2024 +0100 gnu: Add python-vdf. * gnu/packages/python-xyz.scm (python-vdf): New variable.

06/11: doc: Update NixOS wiki url to the official wiki.

2024-05-12 Thread guix-commits
cbaines pushed a commit to branch master in repository guix. commit 986ee0c66c470c900db1dccadcaa092a6d0905ca Author: Picnoir AuthorDate: Thu May 9 09:15:50 2024 +0200 doc: Update NixOS wiki url to the official wiki. nixos.wiki was created by a community member a long time ago. It

08/11: gnu: emacs-eldev: Update to 1.10.

2024-05-12 Thread guix-commits
cbaines pushed a commit to branch master in repository guix. commit 3843820d5d735ae5f91335ee0ba942822daecbc1 Author: Suhail Singh AuthorDate: Fri May 3 10:46:18 2024 -0400 gnu: emacs-eldev: Update to 1.10. * gnu/packages/emacs-xyz.scm (emacs-eldev): Update to 1.10.

05/11: gnu: emacs-suneater-theme: Update to 2.5.2.

2024-05-12 Thread guix-commits
cbaines pushed a commit to branch master in repository guix. commit 069e4d86b871199754c15e002af6aca7d4a348c5 Author: Fredrik Salomonsson AuthorDate: Sun May 5 22:19:43 2024 + gnu: emacs-suneater-theme: Update to 2.5.2. * gnu/packages/emacs-xyz.scm (emacs-suneater-theme): Update

[clang] [clang-tools-extra] [flang] [lld] [llvm] [mlir] [polly] [test]: fix filecheck annotation typos (PR #91854)

2024-05-12 Thread Matt Arsenault via cfe-commits
https://github.com/arsenm commented: amdgpu changes lgtm https://github.com/llvm/llvm-project/pull/91854 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Analyzer][CFG] Correctly handle rebuilt default arg and default init expression (PR #91879)

2024-05-12 Thread via cfe-commits
cationContext(); +SVal Val = state->getSVal(ArgE, LCtx); +state = state->BindExpr(S, LCtx, Val); +Bldr2.generateNode(S, I, state); } getCheckerManager().runCheckersForPostStmt(Dst, Tmp, S, *this); _______ cfe-co

[jenkinsci/jenkins] 6130d2: Update dependency globals to v15.2.0 (#9264)

2024-05-12 Thread 'renovate[bot]' via Jenkins Commits
ails, change your notification settings at https://github.com/jenkinsci/jenkins/settings/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

[clang] 17daa20 - [Clang][CWG1815] Support lifetime extension of temporary created by aggregate initialization using a default member initializer (#87933)

2024-05-12 Thread via cfe-commits
ang/www/cxx_dr_status.html index 12ab59224e82e..92fdcf5556ede 100755 --- a/clang/www/cxx_dr_status.html +++ b/clang/www/cxx_dr_status.html @@ -10698,7 +10698,7 @@ C++ defect report implementation status https://cplusplus.github.io/CWG/issues/1815.html;>1815 CD4 Lifetime extension in aggregate initialization -No +Clang 19 https://cplusplus.github.io/CWG/issues/1816.html;>1816 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Clang][CWG1815] Support lifetime extension of temporary created by aggregate initialization using a default member initializer (PR #87933)

2024-05-12 Thread via cfe-commits
https://github.com/yronglin closed https://github.com/llvm/llvm-project/pull/87933 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[jenkinsci/jenkins] e6a5d3: Update Yarn to v4.2.2 (#9262)

2024-05-12 Thread 'renovate[bot]' via Jenkins Commits
bscribe from these emails, change your notification settings at https://github.com/jenkinsci/jenkins/settings/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

[clang] [X86][vectorcall] Pass built types byval when xmm0~6 exhausted (PR #91846)

2024-05-12 Thread Eli Friedman via cfe-commits
https://github.com/efriedma-quic approved this pull request. LGTM https://github.com/llvm/llvm-project/pull/91846 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Clang][CWG1815] Support lifetime extension of temporary created by aggregate initialization using a default member initializer (PR #87933)

2024-05-12 Thread via cfe-commits
t/pull/87933 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [llvm] [X86][Driver] Do not add `-evex512` for `-march=native` when the target doesn't support AVX512 (PR #91694)

2024-05-12 Thread Mike Lothian via cfe-commits
FireBurn wrote: No worries, it's fixed now, llvm, nodejs and libreoffice are all compiling fine again https://github.com/llvm/llvm-project/pull/91694 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman

[clang] [Analyzer][CFG] Correctly handle rebuilt default arg and default init expression (PR #91879)

2024-05-12 Thread via cfe-commits
lvm/llvm-project/blob/78b3a00418ce6da0426a261a64a77608d0264fe5/clang/lib/Sema/SemaExpr.cpp#L5707-L5723 https://github.com/llvm/llvm-project/pull/91879 _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] Pass QualifiedRenameRule strings by reference to reduce copies (PR #69848)

2024-05-12 Thread Joe Loser via cfe-commits
https://github.com/JoeLoser approved this pull request. https://github.com/llvm/llvm-project/pull/69848 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Clang][CWG1815] Support lifetime extension of temporary created by aggregate initialization using a default member initializer (PR #87933)

2024-05-12 Thread Richard Smith via cfe-commits
zygoloid wrote: > I'd like to proposal a separate PR for static analyzer. #91879 WDYT? That sounds good to me. https://github.com/llvm/llvm-project/pull/87933 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-

[clang] [Analyzer][CFG] Correctly handle rebuilt default arg and default init expression (PR #91879)

2024-05-12 Thread Richard Smith via cfe-commits
create all subexpressions in that case? https://github.com/llvm/llvm-project/pull/91879 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Analyzer][CFG] Correctly handle rebuilt default arg and default init expression (PR #91879)

2024-05-12 Thread Richard Smith via cfe-commits
f it's not rewritten because we could end up with the same expression appearing multiple times. https://github.com/llvm/llvm-project/pull/91879 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [WIP][clang-tidy] Ignore `if consteval` in else-after-return (PR #91588)

2024-05-12 Thread Julian Schmidt via cfe-commits
/if#Consteval_if https://github.com/llvm/llvm-project/pull/91588 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [WIP][clang-tidy] Ignore `if consteval` in else-after-return (PR #91588)

2024-05-12 Thread Julian Schmidt via cfe-commits
looks good. https://github.com/llvm/llvm-project/pull/91588 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [WIP][clang-tidy] Ignore `if consteval` in else-after-return (PR #91588)

2024-05-12 Thread Julian Schmidt via cfe-commits
https://github.com/5chmidti edited https://github.com/llvm/llvm-project/pull/91588 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang] Disallow VLA type compound literals (PR #91891)

2024-05-12 Thread Jim M . R . Teichgräber via cfe-commits
https://github.com/J-MR-T edited https://github.com/llvm/llvm-project/pull/91891 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang] Disallow VLA type compound literals (PR #91891)

2024-05-12 Thread Jim M . R . Teichgräber via cfe-commits
https://github.com/J-MR-T edited https://github.com/llvm/llvm-project/pull/91891 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang] Disallow VLA type compound literals (PR #91891)

2024-05-12 Thread via cfe-commits
). You can also ask questions in a comment on this PR, on the [LLVM Discord](https://discord.com/invite/xS7Z362) or on the [forums](https://discourse.llvm.org/). https://github.com/llvm/llvm-project/pull/91891 _______ cfe-commits mailing list cfe-commits@lists.l

[clang] [clang] Disallow VLA type compound literals (PR #91891)

2024-05-12 Thread Jim M . R . Teichgräber via cfe-commits
ariable-length array type}} + (void)(int[size]){1,2,3}; // expected-error {{compound literal has variable-length array type}} + (void)(int[size]){1,2,3,4,5}; // expected-error {{compound literal has variable-length array type}} +} ___ cfe-commit

[llvm-branch-commits] [clang] release/18.x: [Clang][Sema] Revise the transformation of CTAD parameters of nested class templates (#91628) (PR #91890)

2024-05-12 Thread via llvm-branch-commits
emplate Y(T) -> Y; +}; + +X::Y y(42); + +} // namespace PR88142 _______ 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] [clang] release/18.x: [Clang][Sema] Revise the transformation of CTAD parameters of nested class templates (#91628) (PR #91890)

2024-05-12 Thread via llvm-branch-commits
{ +template Y(T) {} + }; + + template Y(T) -> Y; +}; + +X::Y y(42); + +} // namespace PR88142 `` https://github.com/llvm/llvm-project/pull/91890 _______ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://

[llvm-branch-commits] [clang] release/18.x: [Clang][Sema] Revise the transformation of CTAD parameters of nested class templates (#91628) (PR #91890)

2024-05-12 Thread via llvm-branch-commits
llvmbot wrote: @zyn0217 What do you think about merging this PR to the release branch? https://github.com/llvm/llvm-project/pull/91890 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman

[llvm-branch-commits] [clang] release/18.x: [Clang][Sema] Revise the transformation of CTAD parameters of nested class templates (#91628) (PR #91890)

2024-05-12 Thread via llvm-branch-commits
https://github.com/llvmbot milestoned https://github.com/llvm/llvm-project/pull/91890 ___ 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] [clang] release/18.x: [Clang][Sema] Revise the transformation of CTAD parameters of nested class templates (#91628) (PR #91890)

2024-05-12 Thread via llvm-branch-commits
mplate Y(T) {} + }; + + template Y(T) -> Y; +}; + +X::Y y(42); + +} // namespace PR88142 _______ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

[jenkinsci/dingtalk-plugin] 0920d8: chore(deps): bump org.jenkins-ci.plugins:plugin fr...

2024-05-12 Thread 'dependabot[bot]' via Jenkins Commits
elease notes](https://github.com/jenkinsci/plugin-pom/releases) - [Changelog](https://github.com/jenkinsci/plugin-pom/blob/master/CHANGELOG.md) - [Commits](https://github.com/jenkinsci/plugin-pom/compare/plugin-4.81...plugin-4.82) --- updated-dependencies: - dependency-name: org.jenkins-ci.plugins:

[jenkinsci/unity3d-plugin] 5d8b88: Update parent pom and necessary modifications for ...

2024-05-12 Thread 'Bob Du' via Jenkins Commits
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 visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/unity3d-p

[clang] [llvm] [X86][Driver] Do not add `-evex512` for `-march=native` when the target doesn't support AVX512 (PR #91694)

2024-05-12 Thread Phoebe Wang via cfe-commits
r thought before. Sorry for the inconvenience! https://github.com/llvm/llvm-project/pull/91694 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[jenkinsci/unity3d-plugin] d79237: JENKINS-22166 give a bit more time for the piping ...

2024-05-12 Thread 'Jerome Lacoste' via Jenkins Commits
Branch: refs/heads/main Home: https://github.com/jenkinsci/unity3d-plugin Commit: d792376afd67579f313043e7c701cf2559df02bd https://github.com/jenkinsci/unity3d-plugin/commit/d792376afd67579f313043e7c701cf2559df02bd Author: Jerome Lacoste Date: 2014-03-20 (Thu, 20 Mar 2014)

[clang] [clang-tools-extra] [compiler-rt] [lldb] [llvm] [mlir] [openmp] [polly] fix(python): fix comparison to None (PR #91857)

2024-05-12 Thread Mircea Trofin via cfe-commits
https://github.com/mtrofin approved this pull request. LGTM for the `ctx_profile` part. https://github.com/llvm/llvm-project/pull/91857 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[Lldb-commits] [clang] [clang-tools-extra] [compiler-rt] [lldb] [llvm] [mlir] [openmp] [polly] fix(python): fix comparison to None (PR #91857)

2024-05-12 Thread Mircea Trofin via lldb-commits
https://github.com/mtrofin approved this pull request. LGTM for the `ctx_profile` part. https://github.com/llvm/llvm-project/pull/91857 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb

[jenkinsci/webhook-step-plugin] cb638c: Bump io.jenkins.tools.bom:bom-2.426.x (#249)

2024-05-12 Thread 'dependabot[bot]' via Jenkins Commits
plugin/settings/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

[jenkinsci/webhook-step-plugin]

2024-05-12 Thread 'dependabot[bot]' 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] [llvm] [X86][Driver] Do not add `-evex512` for `-march=native` when the target doesn't support AVX512 (PR #91694)

2024-05-12 Thread Mike Lothian via cfe-commits
___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [llvm] [X86][Driver] Do not add `-evex512` for `-march=native` when the target doesn't support AVX512 (PR #91694)

2024-05-12 Thread Phoebe Wang via cfe-commits
___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [WIP][clang-tidy] Ignore `if consteval` in else-after-return (PR #91588)

2024-05-12 Thread via cfe-commits
er 'return' + + if consteval { +return; + } else { +return; + } +} `` https://github.com/llvm/llvm-project/pull/91588 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [WIP][clang-tidy] Ignore `if consteval` in else-after-return (PR #91588)

2024-05-12 Thread via cfe-commits
https://github.com/JoverZhang ready_for_review https://github.com/llvm/llvm-project/pull/91588 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[leaf-commits] [packages] package repository for binary package files. branch master updated. c4a40cf1d84fd9260324eb07d3467eaa2f21f6df

2024-05-12 Thread kapeka via leaf-git-commits
hooks/post-receive -- package repository for binary package files. ___ leaf-git-commits mailing list leaf-git-commits@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/leaf-git-commits

[clang-tools-extra] [WIP][clang-tidy] Ignore `if consteval` in else-after-return (PR #91588)

2024-05-12 Thread via cfe-commits
JoverZhang wrote: > Thanks for your patch! Would you be able to add a test case for this please? Yes, thanks. I added a test case. https://github.com/llvm/llvm-project/pull/91588 ___ cfe-commits mailing list cfe-commits@lists.llvm.org ht

[clang-tools-extra] [WIP][clang-tidy] Ignore `if consteval` in else-after-return (PR #91588)

2024-05-12 Thread via cfe-commits
ot use 'else' after 'return' + + if consteval { +return; + } else { +return; + } +} ___________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang-tools-extra] [WIP][clang-tidy] Ignore `if consteval` in else-after-return (PR #91588)

2024-05-12 Thread via cfe-commits
ot use 'else' after 'return' + + if consteval { +return; + } else { +return; + } +} ___________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[Lldb-commits] [lldb] [lldb] Fixed the test TestQuoting (PR #91886)

2024-05-12 Thread Dmitry Vasilyev via lldb-commits
le_arg = lldbutil.append_to_process_working_directory( -self, filename -) +outfile_arg = lldbutil.append_to_process_working_directory(self, filename) else: outfile_arg = outfile ___ lldb-commits mailing lis

[Lldb-commits] [lldb] [lldb][Windows] Enforce exec permission using Platform::Install() from Windows host (PR #91887)

2024-05-12 Thread via lldb-commits
/91887 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb][Windows] Enforce exec permission using Platform::Install() from Windows host (PR #91887)

2024-05-12 Thread Dmitry Vasilyev via lldb-commits
ate | File::eOpenOptionCloseOnExec, ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Fixed the test TestQuoting (PR #91886)

2024-05-12 Thread via lldb-commits
, filename) else: outfile_arg = outfile self.runCmd("process launch -- %s %s" % (outfile_arg, args_in)) `` https://github.com/llvm/llvm-project/pull/91886 ___ lldb-commits mailing list ll

[Lldb-commits] [lldb] [lldb] Fixed the test TestQuoting (PR #91886)

2024-05-12 Thread via lldb-commits
`` https://github.com/llvm/llvm-project/pull/91886 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Fixed the test TestQuoting (PR #91886)

2024-05-12 Thread Dmitry Vasilyev via lldb-commits
lse: outfile_arg = outfile ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[clang] [clang][NFC] Remove class layout scissor (PR #89055)

2024-05-12 Thread Nathan Sidwell via cfe-commits
https://github.com/urnathan closed https://github.com/llvm/llvm-project/pull/89055 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] 1d6bf0c - [clang][NFC] Remove class layout scissor (#89055)

2024-05-12 Thread via cfe-commits
M.Offset; -if (M.Data) - Tail += getSize(M.Data); +Tail = M.Offset + getSize(M.Data); +assert((Tail <= ScissorOffset || M.Offset >= ScissorOffset) && + "Bitfield straddles scissor offset"); } #endif } ______

[leaf-commits] [packages] package repository for binary package files. branch 7.3.1-rc1 created. 715f49fde4b9495ad1ed65f49f0be038c1b9ce4a

2024-05-12 Thread kapeka via leaf-git-commits
7.3.1-rc1 --- hooks/post-receive -- package repository for binary package files. ___ leaf-git-commits mailing list leaf-git-commits@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/leaf-git-commits

[jenkinsci/jenkins] ad571f: Clean up file parameter tests (#9260)

2024-05-12 Thread 'Basil Crow' via Jenkins Commits
, change your notification settings at https://github.com/jenkinsci/jenkins/settings/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/jenkins] 144e6b: Update dependency css-minimizer-webpack-plugin to ...

2024-05-12 Thread 'renovate[bot]' via Jenkins Commits
bscribe from these emails, change your notification settings at https://github.com/jenkinsci/jenkins/settings/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

[jenkinsci/jenkins]

2024-05-12 Thread 'renovate[bot]' via Jenkins Commits
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 visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/jenkins

[jenkinsci/jenkins] 0f3717: Update dependency globals to v15.2.0

2024-05-12 Thread 'renovate[bot]' via Jenkins Commits
ttings/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

[jenkinsci/jenkins] 05000f: Update dependency globals to v15.2.0

2024-05-12 Thread 'renovate[bot]' via Jenkins Commits
kinsci/jenkins/settings/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 discu

[jenkinsci/jenkins] 85ea17: Update yarn in war/pom.xml

2024-05-12 Thread 'Alexander Brandes' via Jenkins Commits
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 visit https://groups.google.com/d/msgid/jenkins

[clang] [llvm] [X86][Driver] Do not add `-evex512` for `-march=native` when the target doesn't support AVX512 (PR #91694)

2024-05-12 Thread Phoebe Wang via cfe-commits
h 18.1.6. If there were errors, it should come from 18.1.5. https://github.com/llvm/llvm-project/pull/91694 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[leaf-commits] [bering-uclibc] Repository for Bering-uClibc. annotated tag v7.3.1-rc1 created. v7.3.1-rc1

2024-05-12 Thread kapeka via leaf-git-commits
easyrsa: update sha digest to a trusted one (sha256) initrd: bump to 7.3.1-rc1 --- hooks/post-receive -- Repository for Bering-uClibc. _______ leaf-git-commits mailing l

[clang] [clang-tools-extra] [flang] [lld] [llvm] [mlir] [polly] [test]: fix filecheck annotation typos (PR #91854)

2024-05-12 Thread via cfe-commits
: 'LLVM0700' -CHECK-NEX:T } +CHECK-NEXT: Name Index @ 0x0 { +CHECK-NEXT: Header { +CHECK-NEXT: Length: 0x7C klensy wrote: actual `Length: 0x80 ` https://github.com/llvm/llvm-project/pull/91854 ___ cfe-commits mailing list cfe-commits

[clang] [clang-tools-extra] [flang] [lld] [llvm] [mlir] [polly] [test]: fix filecheck annotation typos (PR #91854)

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

[clang] [llvm] [X86][Driver] Do not add `-evex512` for `-march=native` when the target doesn't support AVX512 (PR #91694)

2024-05-12 Thread Mike Lothian via cfe-commits
FireBurn wrote: @tstellar Can a note be added somewhere about this? Folks upgrading to llvm-18.1.6 will get errors unless they drop -march=native if they were on 18.1.5 https://github.com/llvm/llvm-project/pull/91694 ___ cfe-commits mailing list cfe

[leaf-commits] [bering-uclibc] Repository for Bering-uClibc. branch master updated. v7.3.1-beta1-20-g306d0c1e1f

2024-05-12 Thread kapeka via leaf-git-commits
mode 100644 repo/lighttpd/lighttpd-1.4.76.tar.xz hooks/post-receive -- Repository for Bering-uClibc. ___ leaf-git-commits mailing list leaf-git-commits@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/leaf-git-commits

[clang] [llvm] [mlir] [Clang][CodeGen] Start migrating away from assuming the Default AS is 0 (PR #88182)

2024-05-12 Thread Alex Voicu via cfe-commits
https://github.com/AlexVlx edited https://github.com/llvm/llvm-project/pull/88182 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [llvm] [mlir] [Clang][CodeGen] Start migrating away from assuming the Default AS is 0 (PR #88182)

2024-05-12 Thread Alex Voicu via cfe-commits
han assuming it's 0, alongside fixing a few places where things break / we encode the 0 AS assumption. A bunch of existing tests are extended to check for non-zero default AS usage.` https://github.com/llvm/llvm-project/pull/88182 ___ cfe-commits mailing l

[Qemu-commits] [qemu/qemu] 9f07e4: target/i386: remove PCOMMIT from TCG, deprecate pr...

2024-05-12 Thread Richard Henderson via Qemu-commits
GP SIGNATURE- # gpg: Signature made Fri 10 May 2024 03:47:14 PM CEST # gpg:using RSA key F13338574B662389866C7682BFFBD25F78C7AE83 # gpg:issuer "pbonz...@redhat.com" # gpg: Good signature from "Paolo Bonzini " [full] # gpg: aka &q

[Lldb-commits] [clang] [clang-tools-extra] [compiler-rt] [lldb] [llvm] [mlir] [openmp] [polly] fix(python): fix comparison to None (PR #91857)

2024-05-12 Thread Oleksandr Alex Zinenko via lldb-commits
https://github.com/ftynse approved this pull request. LGTM for the MLIR part. Please seek approval from relevant reviewers for all other subprojects. https://github.com/llvm/llvm-project/pull/91857 ___ lldb-commits mailing list lldb-commits

[clang] [clang-tools-extra] [compiler-rt] [lldb] [llvm] [mlir] [openmp] [polly] fix(python): fix comparison to None (PR #91857)

2024-05-12 Thread Oleksandr Alex Zinenko via cfe-commits
https://github.com/ftynse approved this pull request. LGTM for the MLIR part. Please seek approval from relevant reviewers for all other subprojects. https://github.com/llvm/llvm-project/pull/91857 ___ cfe-commits mailing list cfe-commits

[Lldb-commits] [lldb] [llvm] [lldb] Refactor string manipulation in Debugger.cpp (#91209) (PR #91880)

2024-05-12 Thread Youngsuk Kim via lldb-commits
https://github.com/JOE1994 closed https://github.com/llvm/llvm-project/pull/91880 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [llvm] [lldb] Refactor string manipulation in Debugger.cpp (#91209) (PR #91880)

2024-05-12 Thread Youngsuk Kim via lldb-commits
ase assign it to the new user. https://github.com/llvm/llvm-project/pull/91880 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[jenkinsci/design-library-plugin]

2024-05-12 Thread 'github-actions[bot]' via Jenkins Commits
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 visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkin

[jenkinsci/design-library-plugin] 6b23c1: Add build/weather symbols docs (#326)

2024-05-12 Thread 'Jan Faracik' via Jenkins Commits
ttings at https://github.com/jenkinsci/design-library-plugin/settings/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-

[jenkinsci/azure-ad-plugin] 5fd019: Provide correct key discovery url for sovereign cl...

2024-05-12 Thread 'Tim Jacomb' via Jenkins Commits
cribed 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 visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/azur

branch master updated: gnu: python-xcffib: Update to 1.4.0.

2024-05-12 Thread guix-commits
This is an automated email from the git hooks/post-receive script. efraim pushed a commit to branch master in repository guix. The following commit(s) were added to refs/heads/master by this push: new 56980ea500 gnu: python-xcffib: Update to 1.4.0. 56980ea500 is described below commit

[clang] [clang-tools-extra] [flang] [lld] [llvm] [mlir] [polly] [test]: fix filecheck annotation typos (PR #91854)

2024-05-12 Thread via cfe-commits
tried to substitute `F` var regex?); wrong parentheses; `ie32` instead of i32; https://github.com/llvm/llvm-project/pull/91854 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [libclc] [llvm] [openmp] [Clang] `__attribute__((assume))` refactor (PR #84934)

2024-05-12 Thread Romaric Jodin via cfe-commits
be to add a real attribute for clspv? https://github.com/llvm/llvm-project/pull/84934 _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[Lldb-commits] [lldb] [lldb] Fix redundant condition in Target.cpp (PR #91882)

2024-05-12 Thread via lldb-commits
pull/91882 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

  1   2   3   4   5   6   7   8   9   10   >