[clang] [clang] Introduce `SemaRISCV` (PR #92682)

2024-05-20 Thread via cfe-commits
https://github.com/cor3ntin approved this pull request. https://github.com/llvm/llvm-project/pull/92682 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[Lldb-commits] [lldb] [lldb/dwarf] Fix DW_IDX_parent processing for split dwarf (PR #92745)

2024-05-20 Thread Pavel Labath via lldb-commits
ERef::Section::DebugInfo, 14); - EXPECT_EQ(debug_info.PeekDIEName(second_die), "NameType1"); + dw_offset_t second_die_offset = 14; + EXPECT_EQ(unit->PeekDIEName(second_die_offset), "NameType1"); - DIERef third_die(std::nullopt, DIERef::Section::DebugInfo, 19); - EXP

[Lldb-commits] [lldb] [lldb/dwarf] Fix DW_IDX_parent processing for split dwarf (PR #92745)

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

[Lldb-commits] [lldb] [lldb/dwarf] Fix DW_IDX_parent processing for split dwarf (PR #92745)

2024-05-20 Thread via lldb-commits
EXTRAS="$(LIMIT_DEBUG_INFO_FLAGS) -gdwarf-5 -gpubnames")) +self._run_test( +dict(CFLAGS_EXTRAS="$(LIMIT_DEBUG_INFO_FLAGS) -gdwarf-5 -gpubnames") +) `` https://github.com/llvm/llvm-project/pull/92745 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb/dwarf] Fix DW_IDX_parent processing for split dwarf (PR #92745)

2024-05-20 Thread via lldb-commits
ullopt, DIERef::Section::DebugInfo, 19); - EXPECT_EQ(debug_info.PeekDIEName(third_die), "NameType2"); + dw_offset_t third_die_offset = 19; + EXPECT_EQ(unit->PeekDIEName(third_die_offset), "NameType2"); - DIERef fourth_die(std::nullopt, DIERef::Section::DebugInfo, 24); - EXPECT_EQ(debug_info.PeekDIEName(fourth_die), "NameType1"); + dw_offset_t fourth_die_offset = 24; + EXPECT_EQ(unit->PeekDIEName(fourth_die_offset), "NameType1"); - DIERef fifth_die(std::nullopt, DIERef::Section::DebugInfo, 26); - EXPECT_EQ(debug_info.PeekDIEName(fifth_die), "NameType2"); + dw_offset_t fifth_die_offset = 26; + EXPECT_EQ(unit->PeekDIEName(fifth_die_offset), "NameType2"); } `` https://github.com/llvm/llvm-project/pull/92745 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb/dwarf] Fix DW_IDX_parent processing for split dwarf (PR #92745)

2024-05-20 Thread Pavel Labath via lldb-commits
_offset), "NameType1"); - DIERef third_die(std::nullopt, DIERef::Section::DebugInfo, 19); - EXPECT_EQ(debug_info.PeekDIEName(third_die), "NameType2"); + dw_offset_t third_die_offset = 19; + EXPECT_EQ(unit->PeekDIEName(third_die_offset), "NameType2"); - DIERef fourth_die(std::nullopt, DIERef::Section::DebugInfo, 24); - EXPECT_EQ(debug_info.PeekDIEName(fourth_die), "NameType1"); + dw_offset_t fourth_die_offset = 24; + EXPECT_EQ(unit->PeekDIEName(fourth_die_offset), "NameType1"); - DIERef fifth_die(std::nullopt, DIERef::Section::DebugInfo, 26); - EXPECT_EQ(debug_info.PeekDIEName(fifth_die), "NameType2"); + dw_offset_t fifth_die_offset = 26; + EXPECT_EQ(unit->PeekDIEName(fifth_die_offset), "NameType2"); } ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[clang] [Clang][Sema] Avoid pack expansion for expanded empty PackIndexingExprs (PR #92385)

2024-05-20 Thread via cfe-commits
) + unsigned EmptyPack : 1; cor3ntin wrote: I think i previously suggested a better name for that https://github.com/llvm/llvm-project/pull/92385 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin

[clang] [Clang][Sema] Avoid pack expansion for expanded empty PackIndexingExprs (PR #92385)

2024-05-20 Thread via cfe-commits
. https://github.com/llvm/llvm-project/pull/92385 _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang-repl] Extend the C support. (PR #89804)

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

[clang] [clang-repl] Extend the C support. (PR #89804)

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

[clang] [llvm] [AArch64] Merge duplicate extension information. (PR #92319)

2024-05-20 Thread Tomas Matheson via cfe-commits
rget(...)` extensions have a `-target-feature` name. https://github.com/llvm/llvm-project/pull/92319 ___ 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-20 Thread Mital Ashok via cfe-commits
https://github.com/MitalAshok ready_for_review 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-20 Thread Mital Ashok via cfe-commits
https://github.com/MitalAshok updated https://github.com/llvm/llvm-project/pull/91895 >From 56aed689dc5825fc5bacc6dfdff58ee0eaf71f82 Mon Sep 17 00:00:00 2001 From: Mital Ashok Date: Sun, 12 May 2024 19:48:24 +0100 Subject: [PATCH 1/9] [Clang] Add attribute for consteval builtins; Declare

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

2024-05-20 Thread Mital Ashok via cfe-commits
https://github.com/MitalAshok edited 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] [llvm] [AArch64] Fix feature flags dependecies (PR #90612)

2024-05-20 Thread via cfe-commits
generic" "-target-feature" "+v9.5a"{{.*}} "-target-feature" "+faminmax" + ---- Lukacma wrote: I just followed the pattern for other flags here, you can see that pauth-lr and tlbiw have separate run lines as well. But I aggree that maybe we should collapse it into one run line https://github.com/llvm/llvm-project/pull/90612 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang-tools-extra] [clang][CodeComplete] Omit ExplicitObject when completing code (PR #92743)

2024-05-20 Thread via cfe-commits
>hasDefaultArg() && !InOptional) { // When we see an optional default argument, put that argument and // the remaining default arguments into a new, optional string. `````` https://github.com/llvm/llvm-project/pull/92743 _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang-tools-extra] [clang][CodeComplete] Omit ExplicitObject when completing code (PR #92743)

2024-05-20 Thread via cfe-commits
>hasDefaultArg() && !InOptional) { // When we see an optional default argument, put that argument and // the remaining default arguments into a new, optional string. `````` https://github.com/llvm/llvm-project/pull/92743 _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang-tools-extra] [clang][CodeComplete] Omit ExplicitObject when completing code (PR #92743)

2024-05-20 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/92743 _______ cfe-commits mailing list cfe-commits@lists.l

[clang] [clang-tools-extra] [clang][CodeComplete] Omit ExplicitObject when completing code (PR #92743)

2024-05-20 Thread via cfe-commits
mParams(); P != N; ++P) { const ParmVarDecl *Param = Function->getParamDecl(P); +if (Param->isExplicitObjectParameter()) + continue; + if (Param->hasDefaultArg() && !InOptional) { // When we see an optional default argument, put that argument and // the remaini

[jenkinsci/pipeline-input-step-plugin] 5b3ac1: Bump io.jenkins.tools.bom:bom-2.440.x

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
(https://github.com/jenkinsci/bom) from 2746.vb_79a_1d3e7b_c8 to 3056.v53343b_a_b_a_850. - [Release notes](https://github.com/jenkinsci/bom/releases) - [Commits](https://github.com/jenkinsci/bom/commits) --- updated-dependencies: - dependency-name: io.jenkins.tools.bom:bom-2.440.x dependenc

[jenkinsci/plugin-compat-tester] 5efe56: Bump jenkins.version from 2.457 to 2.458

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
` from 2.457 to 2.458 - [Release notes](https://github.com/jenkinsci/jenkins/releases) - [Commits](https://github.com/jenkinsci/jenkins/compare/jenkins-2.457...jenkins-2.458) Updates `org.jenkins-ci.main:jenkins-war` from 2.457 to 2.458 - [Release notes](https://github.com/jenkinsci/jenkins/re

[clang] [llvm] Disable compiling Flang and running its tests on Clang changes (PR #92740)

2024-05-20 Thread Vlad Serebrennikov via cfe-commits
https://github.com/Endilll ready_for_review https://github.com/llvm/llvm-project/pull/92740 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [llvm] Disable compiling Flang and running its tests on Clang changes (PR #92740)

2024-05-20 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

[clang] [MC/DC][Coverage] Add assertions into emitSourceRegions() (PR #89572)

2024-05-20 Thread NAKAMURA Takumi via cfe-commits
Params != nullptr); + } + + const auto () const { chapuni wrote: Removed. (It is in another request) https://github.com/llvm/llvm-project/pull/89572 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/c

[jenkinsci/json-lib] f5a6b1: Bump commons-logging:commons-logging from 1.3.1 to...

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
ations -- 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/maven-plugin] ca060a: Bump maven-reporting-api from 3.0 to 3.1.1

2024-05-20 Thread 'Jesse Glick' via Jenkins Commits
/maven-reporting-api/releases) - [Commits](https://github.com/apache/maven-reporting-api/compare/maven-reporting-api-3.0...maven-reporting-api-3.1.1) --- updated-dependencies: - dependency-name: org.apache.maven.reporting:maven-reporting-api dependency-type: direct:production update-type: v

[clang] [clang] Introduce `SemaCoroutine` (PR #92645)

2024-05-20 Thread Aaron Ballman via cfe-commits
rolled by a traits object of some kind (`getSema().ConstExpr().whatever`). https://github.com/llvm/llvm-project/pull/92645 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[jenkinsci/email-ext-plugin] 31a4bb: Bump io.jenkins.tools.bom:bom-2.440.x

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
ci/bom) from 3041.ve87ce2cdf223 to 3056.v53343b_a_b_a_850. - [Release notes](https://github.com/jenkinsci/bom/releases) - [Commits](https://github.com/jenkinsci/bom/commits) --- updated-dependencies: - dependency-name: io.jenkins.tools.bom:bom-2.440.x dependency-type: direct:production ... Sign

[clang] [llvm] [AMDGPU][WIP] Extend permlane16, permlanex16 and permlane64 intrinsic lowering for generic types (PR #92725)

2024-05-20 Thread Vikram Hegde via cfe-commits
https://github.com/vikramRH edited https://github.com/llvm/llvm-project/pull/92725 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[jenkinsci/maven-plugin] fc7001: Bump mavenMinimalVersion from 3.8.3 to 3.9.6

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
3.8.3 to 3.9.6 - [Release notes](https://github.com/apache/maven/releases) - [Commits](https://github.com/apache/maven/compare/maven-3.8.3...maven-3.9.6) Updates `org.apache.maven:maven-compat` from 3.8.3 to 3.9.6 - [Release notes](https://github.com/apache/maven/releases) - [Commits](https://gith

[jenkinsci/maven-plugin]

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
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 visit https://groups.google.c

[jenkinsci/maven-plugin]

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
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 visit https://groups.go

[clang] [clang-format] Add space after a word token (PR #92741)

2024-05-20 Thread Robin Caloudis via cfe-commits
difference in the C and C++ language? https://github.com/llvm/llvm-project/pull/92741 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [llvm] Disable compiling Flang and running its tests on Clang changes (PR #92740)

2024-05-20 Thread Vlad Serebrennikov via cfe-commits
;" << FD->getNameAsString() << "\"\n"; -} +} } }; _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [llvm] [AMDGPU][WIP] Extend permlane16, permlanex16 and permlane64 intrinsic lowering for generic types (PR #92725)

2024-05-20 Thread Vikram Hegde via cfe-commits
https://github.com/vikramRH edited https://github.com/llvm/llvm-project/pull/92725 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Clang] Emit lifetime markers for non-aggregate temporary allocas (PR #90849)

2024-05-20 Thread via cfe-commits
just forgot to remove the note. It is fixed now https://github.com/llvm/llvm-project/pull/90849 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[jenkinsci/maven-plugin] 854e29: Fix a syntax error.

2024-05-20 Thread 'Jesse Glick' via Jenkins Commits
notification settings at https://github.com/jenkinsci/maven-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-commit

[jenkins-infra/account-app]

2024-05-20 Thread 'renovate[bot]' 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

[jenkins-infra/account-app] 9d9212: Update dependency org.webjars:jquery-ui to v1.13.3

2024-05-20 Thread 'renovate[bot]' via Jenkins Commits
scribe from these emails, change your notification settings at https://github.com/jenkins-infra/account-app/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 emai

[jenkins-infra/account-app] b9ea52: Update dependency org.webjars:jquery-ui to v1.13.3

2024-05-20 Thread 'renovate[bot]' via Jenkins Commits
e from these emails, change your notification settings at https://github.com/jenkins-infra/account-app/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 i

[jenkinsci/maven-plugin] 79f6b8: chore(CODEOWNERS): add plugin development team

2024-05-20 Thread 'Jesse Glick' via Jenkins Commits
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 visit https://groups.google.c

[clang] [clang-format] Add space after a word token (PR #92741)

2024-05-20 Thread Robin Caloudis via cfe-commits
} // If the next token is a binary operator or a selector name, we have ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[jenkinsci/analysis-pom-plugin] e4c8bc: [maven-release-plugin] prepare for next developmen...

2024-05-20 Thread 'Ullrich Hafner' via Jenkins Commits
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 visit https://groups.google.com/d/msgid

[clang] [Clang] Emit lifetime markers for non-aggregate temporary allocas (PR #90849)

2024-05-20 Thread via cfe-commits
- a/clang/test/CodeGen/aarch64-byval-temp.c +++ b/clang/test/CodeGen/aarch64-byval-temp.c @@ -1,4 +1,3 @@ -// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py UTC_ARGS: --version 4 // RUN: %clang_cc1 -emit-llvm -triple arm64-- -fexperimental-max-bitint-width=1024 -o - %s -O0 | FileCheck %s --check-prefix=CHECK-O0 // RUN: %clang_cc1 -emit-llvm -disable-llvm-optzns -fexperimental-max-bitint-width=1024 -triple arm64-- -o - %s -O3 | FileCheck %s --check-prefix=CHECK-O3 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[jenkinsci/analysis-pom-plugin] 5ca9a2: [maven-release-plugin] prepare release v8.4.0

2024-05-20 Thread 'Ullrich Hafner' via Jenkins Commits
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

[jenkinsci/maven-plugin] f46ae7: Adapt to Jakarta Activation and Jakarta Mail upgrades

2024-05-20 Thread 'Jesse Glick' via Jenkins Commits
these emails, change your notification settings at https://github.com/jenkinsci/maven-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, sen

[jenkinsci/analysis-pom-plugin] 2178aa: Revert skipping of maven flatten plugin to reenabl...

2024-05-20 Thread 'Ullrich Hafner' via Jenkins Commits
-plugin/compare/64c9679ef0d2...223e10f45c0c To unsubscribe from these emails, change your notification settings at https://github.com/jenkinsci/analysis-pom-plugin/settings/notifications -- You received this message because you are subscribed to the Google Groups "Jenkins Commits&q

[jenkinsci/incrementals-tools] 6030ad: Bump s4u/setup-maven-action from 1.12.0 to 1.13.0

2024-05-20 Thread 'Jesse Glick' via Jenkins Commits
1.13.0. - [Release notes](https://github.com/s4u/setup-maven-action/releases) - [Commits](https://github.com/s4u/setup-maven-action/compare/v1.12.0...v1.13.0) --- updated-dependencies: - dependency-name: s4u/setup-maven-action dependency-type: direct:production update-type: version-update:semver

[jenkinsci/incrementals-tools]

2024-05-20 Thread 'Jesse Glick' via Jenkins Commits
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 visit https://groups.google.c

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

2024-05-20 Thread via cfe-commits
https://github.com/yronglin edited https://github.com/llvm/llvm-project/pull/92527 ___ 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-20 Thread Mital Ashok via cfe-commits
https://github.com/MitalAshok updated https://github.com/llvm/llvm-project/pull/91895 >From 56aed689dc5825fc5bacc6dfdff58ee0eaf71f82 Mon Sep 17 00:00:00 2001 From: Mital Ashok Date: Sun, 12 May 2024 19:48:24 +0100 Subject: [PATCH 1/8] [Clang] Add attribute for consteval builtins; Declare

[clang] [analyzer] Fix a test issue in mingw configurations (PR #92737)

2024-05-20 Thread via cfe-commits
g long)ptr]); })cpp"; std::string Output; `` https://github.com/llvm/llvm-project/pull/92737 _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [analyzer] Fix a test issue in mingw configurations (PR #92737)

2024-05-20 Thread Martin Storsjö via cfe-commits
; std::string Output; _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [llvm] [AMDGPU][WIP] Extend permlane16, permlanex16 and permlane64 intrinsic lowering for generic types (PR #92725)

2024-05-20 Thread Vikram Hegde via cfe-commits
https://github.com/vikramRH edited https://github.com/llvm/llvm-project/pull/92725 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[llvm-branch-commits] [mlir] [MLIR][OpenMP] Add `OpenMP_Clause` tablegen definitions (PR #92521)

2024-05-20 Thread Tom Eccles via llvm-branch-commits
;>; + +//===--===// +// V5.2: [5.5.8] `reduction` clause +//===--===// + +class OpenMP_ReductionClauseSkip< +bit traits = false, bit arguments = false, b

[clang] [MC/DC][Coverage] Add assertions into emitSourceRegions() (PR #89572)

2024-05-20 Thread NAKAMURA Takumi via cfe-commits
lue(); } bool isMCDCBranch() const { -const auto *BranchParams = std::get_if(); -assert(BranchParams == nullptr || BranchParams->ID >= 0); -return (BranchParams != nullptr); +return std::holds_alternative(MCDCParams); } bool isMCDCDecision() const { ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[jenkins-infra/jenkins.io] bed884: Automated changelog for 2.459

2024-05-20 Thread 'jenkins-infra-changelog-generator[bot]' via Jenkins Commits
e your notification settings at https://github.com/jenkins-infra/jenkins.io/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-

[Lldb-commits] [lldb] [WIP] [lldb][Progress] Report progress when completing types from DWARF (PR #91452)

2024-05-20 Thread Pavel Labath via lldb-commits
operation it self, or everything leading up to it as well. For example, is "expr var" just the timing of the "expr" command, or attach command as well. If the latter, then what's the baseline? https://github.com/llvm/llvm-project/pull/91452 ___

[jenkinsci/parameterized-scheduler-plugin] d1f8bf: Bump io.jenkins.tools.bom:bom-2.426.x

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
o 3056.v53343b_a_b_a_850. - [Release notes](https://github.com/jenkinsci/bom/releases) - [Commits](https://github.com/jenkinsci/bom/commits) --- updated-dependencies: - dependency-name: io.jenkins.tools.bom:bom-2.426.x dependency-type: direct:production ... Signed-off-by: dependabot[bot]

[jenkinsci/parameterized-scheduler-plugin]

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
/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 on the

[clang] [llvm] [OpenMP] OpenMP 5.1 "assume" directive parsing support (PR #92731)

2024-05-20 Thread via cfe-commits
jtb20 wrote: Adding @jdoerfert as potential reviewer https://github.com/llvm/llvm-project/pull/92731 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [llvm] [OpenMP] OpenMP 5.1 "assume" directive parsing support (PR #92731)

2024-05-20 Thread via cfe-commits
ive<"assume"> { + let association = AS_Block; +} def OMP_Assumes : Directive<"assumes"> { let association = AS_None; } `` https://github.com/llvm/llvm-project/pull/92731 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[jenkinsci/parameterized-scheduler-plugin] d1f8bf: Bump io.jenkins.tools.bom:bom-2.426.x

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
(https://github.com/jenkinsci/bom) from 2950.va_633b_f42f759 to 3056.v53343b_a_b_a_850. - [Release notes](https://github.com/jenkinsci/bom/releases) - [Commits](https://github.com/jenkinsci/bom/commits) --- updated-dependencies: - dependency-name: io.jenkins.tools.bom:bom-2.426.x dependenc

[clang] [llvm] [OpenMP] OpenMP 5.1 "assume" directive parsing support (PR #92731)

2024-05-20 Thread via cfe-commits
https://github.com/jtb20 edited https://github.com/llvm/llvm-project/pull/92731 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [llvm] [OpenMP] OpenMP 5.1 "assume" directive parsing support (PR #92731)

2024-05-20 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/92731 _______ cfe-commits mailing list cfe-commits@lists.l

[jenkinsci/dependency-track-plugin]

2024-05-20 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] [OpenMP] OpenMP 5.1 "assume" directive parsing support (PR #92731)

2024-05-20 Thread via cfe-commits
n"> { ]; let association = AS_Separating; } +def OMP_Assume : Directive<"assume"> { + let association = AS_Block; +} def OMP_Assumes : Directive<"assumes"> { let association = AS_None; } ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[jenkinsci/dependency-track-plugin] 3f131c: Bump configuration-as-code.version

2024-05-20 Thread 'Ronny Perinke' via Jenkins Commits
ration-as-code` from 1775.v810dc950b_514 to 1807.v0175eda_00a_20 - [Release notes](https://github.com/jenkinsci/configuration-as-code-plugin/releases) - [Commits](https://github.com/jenkinsci/configuration-as-code-plugin/commits) Updates `io.jenkins.configuration-as-code:test-harness` from

[jenkinsci/parameterized-scheduler-plugin] 4a15cd: Bump org.jenkins-ci.plugins:plugin from 4.80 to 4.82

2024-05-20 Thread 'Raihaan Shouhell' via Jenkins Commits
o 4.82. - [Release 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.80...plugin-4.82) --- updated-dependencies: - dependency-name: org.j

[jenkinsci/parameterized-scheduler-plugin]

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
-scheduler-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

[jenkinsci/parameterized-scheduler-plugin] 7950e3: Bump io.jenkins.tools.incrementals:git-changelist-...

2024-05-20 Thread 'Raihaan Shouhell' via Jenkins Commits
ension](https://github.com/jenkinsci/incrementals-tools) from 1.7 to 1.8. - [Release notes](https://github.com/jenkinsci/incrementals-tools/releases) - [Commits](https://github.com/jenkinsci/incrementals-tools/compare/parent-1.7...parent-1.8) --- updated-dependencies: - dependenc

[jenkinsci/ec2-plugin] b05488: build(deps): bump org.jenkins-ci.plugins.aws-java-...

2024-05-20 Thread 'Raihaan Shouhell' via Jenkins Commits
from 1.12.671-439.veec746c91fcb_ to 1.12.696-451.v0651a_da_9ca_ec. - [Release notes](https://github.com/jenkinsci/aws-java-sdk-plugin/releases) - [Changelog](https://github.com/jenkinsci/aws-java-sdk-plugin/blob/master/CHANGELOG.md) - [Commits](https://github.com/jenkinsci/aws-java-sdk-plugin/c

[clang] [clang] Fix PS "selective" DLL import/export of vtable & typeinfo (PR #92579)

2024-05-20 Thread Andrew Ng via cfe-commits
issed this reference to the "Side note" in the original test. This side note was not entirely accurate which is why I have removed it. https://github.com/llvm/llvm-project/pull/92579 _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://

[clang] [clang] Fix PS "selective" DLL import/export of vtable & typeinfo (PR #92579)

2024-05-20 Thread Andrew Ng via cfe-commits
*RD) { + for (const auto *D : RD->noload_decls()) nga888 wrote: Done. https://github.com/llvm/llvm-project/pull/92579 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[jenkinsci/dependency-track-plugin]

2024-05-20 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

[jenkinsci/analysis-pom-plugin] 64c967: [maven-release-plugin] prepare for next developmen...

2024-05-20 Thread 'Ullrich Hafner' via Jenkins Commits
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 visit https://groups.google.com/d/msgid

[jenkinsci/dependency-track-plugin] f07327: Bump org.jenkins-ci.plugins:plain-credentials

2024-05-20 Thread 'Ronny Perinke' via Jenkins Commits
om 179.vc5cb_98f6db_38 to 182.v468b_97b_9dcb_8. - [Release notes](https://github.com/jenkinsci/plain-credentials-plugin/releases) - [Changelog](https://github.com/jenkinsci/plain-credentials-plugin/blob/master/CHANGELOG.md) - [Commits](https://github.com/jenkinsci/plain-credentials-plugin/c

[jenkinsci/analysis-pom-plugin] e761ef: [maven-release-plugin] prepare release v8.3.0

2024-05-20 Thread 'Ullrich Hafner' via Jenkins Commits
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] [clang] Fix PS "selective" DLL import/export of vtable & typeinfo (PR #92579)

2024-05-20 Thread Andrew Ng via cfe-commits
oes not need to be imported (as -/// described in the "Side note", above). +/// the vtable will not be referenced, and so does not need to be imported. // PS-DAG: @_ZTI10FullImport = {{.*}}dllimport // WI-DAG: @_ZTI10FullImport = external dllimport constant ptr ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[jenkinsci/dependency-track-plugin] 3f131c: Bump configuration-as-code.version

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
0b_514 to 1807.v0175eda_00a_20. Updates `io.jenkins:configuration-as-code` from 1775.v810dc950b_514 to 1807.v0175eda_00a_20 - [Release notes](https://github.com/jenkinsci/configuration-as-code-plugin/releases) - [Commits](https://github.com/jenkinsci/configuration-as-code-plugin/commits) U

[jenkinsci/dependency-track-plugin]

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
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 visit https://groups.google.c

[jenkinsci/dependency-track-plugin] 1f08f5: Bump byte-buddy.version from 1.14.13 to 1.14.15

2024-05-20 Thread 'Ronny Perinke' via Jenkins Commits
.14.15 - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.14.13...byte-buddy-1.14.15) Updates `net.bytebuddy:byte-buddy-agent` from 1

[jenkinsci/dependency-track-plugin] 1b57da: Bump org.jenkins-ci.plugins:plugin from 4.80 to 4.82

2024-05-20 Thread 'Ronny Perinke' 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.80...plugin-4.82) --- updated-dependencies: - dependency-name: org.jenkins-ci.plugins:

[jenkinsci/dependency-track-plugin]

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
-- 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

[jenkinsci/dependency-track-plugin] d69474: Bump org.apache.maven.plugins:maven-scm-plugin fro...

2024-05-20 Thread 'Ronny Perinke' via Jenkins Commits
from 2.0.1 to 2.1.0. - [Commits](https://github.com/apache/maven-scm/compare/maven-scm-2.0.1...maven-scm-2.1.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-scm-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Sign

[Lldb-commits] [lldb] Reapply [lldb][DWARF] Delay struct/class/union definition DIE searching when parsing declaration DIEs. (PR #92328)

2024-05-20 Thread Pavel Labath via lldb-commits
ter implementation if you were writing it for this use case specifically (but it's also not clear whether it's worthwhile to have a brand new implementation for this use case). https://github.com/llvm/llvm-project/pull/92328 ___________ lldb-commits mailing list lldb-commit

[clang] MIPS/Clang: handleTargetFeatures, add +fp64 if +msa and no other +-fp (PR #92728)

2024-05-20 Thread via cfe-commits
push_back("+fp64"); +} + setDataLayout(); return true; `````` https://github.com/llvm/llvm-project/pull/92728 _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] MIPS/Clang: Add more false option pairs into validateTarget (PR #91968)

2024-05-20 Thread YunQiang Su via cfe-commits
wzssyqa wrote: Depens on: https://github.com/llvm/llvm-project/pull/92728 https://github.com/llvm/llvm-project/pull/91968 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] MIPS/Clang: handleTargetFeatures, add +fp64 if +msa and no other +-fp (PR #92728)

2024-05-20 Thread YunQiang Su via cfe-commits
etInfo : public TargetInfo { if (StrictAlign) HasUnalignedAccess = false; +if (HasMSA && !FpGiven) { + FPMode = FP64; + Features.push_back("+fp64"); +} + setDataLayout(); return true; _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [compiler-rt] [llvm] [ConstantFolding] Canonicalize constexpr GEPs to i8 (PR #89872)

2024-05-20 Thread Nikita Popov via cfe-commits
https://github.com/nikic closed https://github.com/llvm/llvm-project/pull/89872 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[Lldb-commits] [lldb] [lldb][Windows] Skip the TestDataFormatterLibcxxChrono test to avoid python crash (PR #92575)

2024-05-20 Thread Dmitry Vasilyev via lldb-commits
https://github.com/slydiman closed https://github.com/llvm/llvm-project/pull/92575 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb][Windows] Fixed LibcxxChronoTimePointSecondsSummaryProvider() (PR #92701)

2024-05-20 Thread Dmitry Vasilyev via lldb-commits
https://github.com/slydiman closed https://github.com/llvm/llvm-project/pull/92701 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] 2217d17 - [lldb][Windows] Fixed LibcxxChronoTimePointSecondsSummaryProvider() (#92701)

2024-05-20 Thread via lldb-commits
6,7 +251,13 @@ def test_with_run_command(self): self.expect( "frame variable ld_pos_date", -substrs=["ld_pos_date = date=32767-12-31 timestamp=11248737 days"], +substrs=[ +( +"ld_pos_date = date=32767-12-31 timestamp=11248737 days" +if isNotWindowsHost +else "ld_pos_date = timestamp=11248737 days" +) +], ) self.expect( "frame variable ld_pos_days", ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[clang] [clang] Introduce `SemaCoroutine` (PR #92645)

2024-05-20 Thread via cfe-commits
ome point we should pause and consider the impact of already done work) There are a lot of architectures specific functions that we might be able to move, if we want to? https://github.com/llvm/llvm-project/pull/92645 ___ cfe-commits mailing list

[jenkinsci/hpe-application-automation-tools-plugin] 9b823c: CPE-1674599 Plugin on Jenkins - Test Suites Rerun ...

2024-05-20 Thread 'andreibangau99' via Jenkins Commits
ecause 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/j

[jenkinsci/localization-zh-cn-plugin] 282055: Bump org.jenkins-ci.plugins:plugin from 4.75 to 4....

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
o 4.79. - [Release 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.75...plugin-4.79) --- updated-dependencies: - dependency-name: org.j

[clang] [clang] Processing real directories added as virtual ones (PR #91645)

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

[jenkinsci/ec2-plugin] b05488: build(deps): bump org.jenkins-ci.plugins.aws-java-...

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
n/blob/master/CHANGELOG.md) - [Commits](https://github.com/jenkinsci/aws-java-sdk-plugin/commits) --- updated-dependencies: - dependency-name: org.jenkins-ci.plugins.aws-java-sdk:aws-java-sdk-ec2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: depe

[jenkinsci/ec2-plugin] 1b3667: build(deps): bump org.jenkins-ci.plugins.aws-java-...

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
plugin) from 1.12.671-439.veec746c91fcb_ to 1.12.696-451.v0651a_da_9ca_ec. - [Release notes](https://github.com/jenkinsci/aws-java-sdk-plugin/releases) - [Changelog](https://github.com/jenkinsci/aws-java-sdk-plugin/blob/master/CHANGELOG.md) - [Commits](https://github.com/jenkinsci/aws-java-sdk-

[jenkinsci/ec2-plugin] 1b3667: build(deps): bump org.jenkins-ci.plugins.aws-java-...

2024-05-20 Thread 'dependabot[bot]' via Jenkins Commits
va-sdk-plugin/blob/master/CHANGELOG.md) - [Commits](https://github.com/jenkinsci/aws-java-sdk-plugin/commits) --- updated-dependencies: - dependency-name: org.jenkins-ci.plugins.aws-java-sdk:aws-java-sdk-minimal dependency-type: direct:production update-type: version-update:semver-patch ...

  1   2   3   4   5   6   7   8   9   10   >