SunilKuravinakop wrote:
Since this has been done in https://github.com/llvm/llvm-project/pull/75419
with the change suggested by Joseph Huber, I am closing this.
https://github.com/llvm/llvm-project/pull/75562
___
lldb-commits mailing list
lldb-commit
Author: Alex Langford
Date: 2023-12-15T10:26:01-08:00
New Revision: 7113c80289d62de95bca818109324601a51fefd8
URL:
https://github.com/llvm/llvm-project/commit/7113c80289d62de95bca818109324601a51fefd8
DIFF:
https://github.com/llvm/llvm-project/commit/7113c80289d62de95bca818109324601a51fefd8.diff
ChipsSpectre wrote:
@cor3ntin could you please give your review?
@shafik or would you have time to do this?
The fix is ready to be merged, and all review comments are addressed.
https://github.com/llvm/llvm-project/pull/74926
___
lldb-commits mailing
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Greg Clayton (clayborg)
Changes
Currently in LLDB if clients listen for Debugger::eBroadcastBitProgress events,
this can cause too many progress events to get sent to clients which makes the
feature a bit less useful that originally planne
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff 2aaeef1fad0c1b233f6d3ca67a6c05877dc9e998
598115f4d8240b6199493e6380369b0074af8411 --
https://github.com/UmeshKalappa0 updated
https://github.com/llvm/llvm-project/pull/75564
>From 4125e4a709c594562fa6c52f045ba7442e3cb523 Mon Sep 17 00:00:00 2001
From: Umesh Kalappa
Date: Fri, 15 Dec 2023 11:52:52 +0530
Subject: [PATCH 1/2] Problem :For Kernel Modules ,emitting the relocs like
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Pavel Labath (labath)
Changes
The function was using the default version of ValueObject::Dump, which has a
default of using the synthetic-ness of the top-level value for determining
whether to print _all_ values as synthetic. This resulted
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: David Spickett (DavidSpickett)
Changes
NestedClass will be found via Class::NestedClass and ClassTypedef::NestedClass.
So the first part of the test gets 2 results as the default is to find all
matching types.
In the next part, we ask for
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Adrian Prantl (adrian-prantl)
Changes
This API seems to be completely unused. Should we just remove it?
---
Full diff: https://github.com/llvm/llvm-project/pull/75840.diff
2 Files Affected:
- (modified) lldb/include/lldb/Utility/FileSpec
Author: Pavel Labath
Date: 2023-12-18T21:23:03+01:00
New Revision: 927926b8af4fd6ab966b95d7b6eb31790758ced1
URL:
https://github.com/llvm/llvm-project/commit/927926b8af4fd6ab966b95d7b6eb31790758ced1
DIFF:
https://github.com/llvm/llvm-project/commit/927926b8af4fd6ab966b95d7b6eb31790758ced1.diff
@@ -0,0 +1,303 @@
+//===--===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apa
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff 33d5f4314f4fd83be21e22054e662220a62fe40b
6296613d1d3f3e8b63e1af1d12d28f2000facc0e --
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Pete Lawrence (PortalPete)
Changes
… by exiting early and consolidating code paths.
As I worked through changes to another PR
(https://github.com/llvm/llvm-project/pull/74912), I couldn't help but rewrite
a few methods for readability, ma
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Pete Lawrence (PortalPete)
Changes
This a follow-up PR from this other one:
https://github.com/llvm/llvm-project/pull/74413
Nothing calls into these two methods, so we (@DavidSpickett, @adrian-prantl, and I) agreed to remove them once we me
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Adrian Prantl (adrian-prantl)
Changes
LLVM supports DWARF 5 linetable extension to store source files inline in
DWARF. This is particularly useful for compiler-generated source code. This
implementation tries to materialize them as tempora
github-actions[bot] wrote:
:warning: Python code formatter, darker found issues in your code. :warning:
You can test this locally with the following command:
``bash
darker --check --diff -r
5f423b7d1cb3474168d79827d2305b137be7160b...638bd4e7e939ef28bf23ae2cfd1723797040b0a5
lldb/
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff 5f423b7d1cb3474168d79827d2305b137be7160b
638bd4e7e939ef28bf23ae2cfd1723797040b0a5 --
https://github.com/UmeshKalappa0 updated
https://github.com/llvm/llvm-project/pull/75564
>From 4125e4a709c594562fa6c52f045ba7442e3cb523 Mon Sep 17 00:00:00 2001
From: Umesh Kalappa
Date: Fri, 15 Dec 2023 11:52:52 +0530
Subject: [PATCH 1/3] Problem :For Kernel Modules ,emitting the relocs like
UmeshKalappa0 wrote:
> Scattering around `setDSOLocal(false)` makes the logic hard to understand.
> I'd strongly prefer to fix the initial setting of dso_local when we create
> the global variable. We can refactor the code to make that work.
@efriedma-quic ,thank you for the suggestions and w
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Pavel Labath (labath)
Changes
We don't have a std::vector formatter on windows, so use a custom formatter in
this test to avoid relying on std::vector.
---
Full diff: https://github.com/llvm/llvm-project/pull/75908.diff
3 Files Affected:
github-actions[bot] wrote:
:warning: Python code formatter, darker found issues in your code. :warning:
You can test this locally with the following command:
``bash
darker --check --diff -r
5caae72d1a4f58c9525977a93d86c3c833da4b34...b8dbd31b95058f8098f9ef57c540a1635a9a1fde
lldb/
Author: David Spickett
Date: 2023-12-19T08:54:03Z
New Revision: 87bf1afbbf0343fd7560a4e1344d2ca0e066a905
URL:
https://github.com/llvm/llvm-project/commit/87bf1afbbf0343fd7560a4e1344d2ca0e066a905
DIFF:
https://github.com/llvm/llvm-project/commit/87bf1afbbf0343fd7560a4e1344d2ca0e066a905.diff
LOG
Author: Pavel Labath
Date: 2023-12-19T09:58:25+01:00
New Revision: 3068d277fd5ad0590a11dcb23af170ab31d7bda0
URL:
https://github.com/llvm/llvm-project/commit/3068d277fd5ad0590a11dcb23af170ab31d7bda0
DIFF:
https://github.com/llvm/llvm-project/commit/3068d277fd5ad0590a11dcb23af170ab31d7bda0.diff
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Michael Buch (Michael137)
Changes
This is required for users of `TypeQuery` that limit the set of languages of
the query using APIs such as `GetSupportedLanguagesForTypes` or
`GetSupportedLanguagesForExpressions`.
Example usage: https://g
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: David Spickett (DavidSpickett)
Changes
The way this code was updated in dd9587795811ba21e6ca6ad52b4531e17e6babd6 meant
that if the first module did not have the symbol, the iteration stopped as
returning true means stop. So only if every m
Author: Adrian Prantl
Date: 2023-12-19T08:49:12-08:00
New Revision: 45657e81a111021dab5f1daa9482afae5d95569c
URL:
https://github.com/llvm/llvm-project/commit/45657e81a111021dab5f1daa9482afae5d95569c
DIFF:
https://github.com/llvm/llvm-project/commit/45657e81a111021dab5f1daa9482afae5d95569c.diff
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff c8418c4a19dac494069559918b3e4ea505ddf148
63b1cca8660e40d612e43496d3ff07c48bafa628 --
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff b3d024c6737adb87e83193de88af04ec74ddf3ea
154ab4f551b5f0bf83e016ebb6fa8516be67fc31 --
Author: Pete Lawrence
Date: 2023-12-19T15:00:56-08:00
New Revision: 8ddf98ad4bb14867987b48a37dd29750c665112f
URL:
https://github.com/llvm/llvm-project/commit/8ddf98ad4bb14867987b48a37dd29750c665112f
DIFF:
https://github.com/llvm/llvm-project/commit/8ddf98ad4bb14867987b48a37dd29750c665112f.diff
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Pete Lawrence (PortalPete)
Changes
### Purpose
For now, we'd like to get people's thought's on the goal, design, and scope of
this PR by reviewing these preliminary changes.
I recommend focussing (or starting) on these files:
* `ValueObjec
https://github.com/boxu-zhang updated
https://github.com/llvm/llvm-project/pull/76029
>From 60030d96d27d23ef2049a3888d65721be51c4481 Mon Sep 17 00:00:00 2001
From: "boxu.zhang"
Date: Wed, 20 Dec 2023 17:35:25 +0800
Subject: [PATCH] Make 'UnrollMaxUpperBound' to be overridable by target. The
de
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Felipe de Azevedo Piovezan (felipepiovezan)
Changes
If adding a user commands fails because a command with the same name already
exists, we only say that "force replace is not set" without telling the user
_how_ to set it. There are two wa
https://github.com/UmeshKalappa0 updated
https://github.com/llvm/llvm-project/pull/75564
>From 4125e4a709c594562fa6c52f045ba7442e3cb523 Mon Sep 17 00:00:00 2001
From: Umesh Kalappa
Date: Fri, 15 Dec 2023 11:52:52 +0530
Subject: [PATCH 1/4] Problem :For Kernel Modules ,emitting the relocs like
Author: David Spickett
Date: 2023-12-20T14:48:01Z
New Revision: 7767c5856d85cd1acf2efc32f77fdf07f00f9ff4
URL:
https://github.com/llvm/llvm-project/commit/7767c5856d85cd1acf2efc32f77fdf07f00f9ff4
DIFF:
https://github.com/llvm/llvm-project/commit/7767c5856d85cd1acf2efc32f77fdf07f00f9ff4.diff
LOG
jimingham wrote:
This can happen if you don't succeed in shutting down the private state thread
as part of exiting, so that it is still trying to operate on a process that has
been finalized.
Not sure why the shutdown ordering seems wrong in the Linux case, however.
Jim
> On Dec 15, 2023, a
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Pete Lawrence (PortalPete)
Changes
For example, the following message has the severity string "error: " twice.
> "error: :3:1: error: cannot find 'bogus' in scope
This method already appends the severity string in the beginnin
=?utf-8?q?José?= L. Junior
Message-ID:
In-Reply-To:
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: José Lira Junior (junior-jl)
Changes
Follow-up to #69422.
This commit builds upon the previous contribution that introduced symbol
colorization in the image lookup command when using r
=?utf-8?q?José?= L. Junior
Message-ID:
In-Reply-To:
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff 912506b75d8a508353a701c230e73ca
=?utf-8?q?José?= L. Junior ,
=?utf-8?q?José?= L. Junior ,
=?utf-8?q?José?= L. Junior
Message-ID:
In-Reply-To:
taalhaataahir0102 wrote:
Hi! @DavidSpickett, made the above changes.
1. struct has been introduced inside stream.h and all the information is being
passed using optional struct (`std:
llvmbot wrote:
@llvm/pr-subscribers-platform-windows
Author: Martin Storsjö (mstorsjo)
Changes
We previously were defining _BSD_SOURCE right before including getopt.h.
However, on mingw-w64, getopt.h is also transitively included by unistd.h, and
unistd.h can be transitively included by
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Martin Storsjö (mstorsjo)
Changes
We previously were defining _BSD_SOURCE right before including getopt.h.
However, on mingw-w64, getopt.h is also transitively included by unistd.h, and
unistd.h can be transitively included by many headers
oltolm wrote:
What happens next with my PR?
https://github.com/llvm/llvm-project/pull/74731
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Felipe de Azevedo Piovezan
Date: 2023-12-21T09:04:24-03:00
New Revision: cf0be7b4920cec762639a1f39e8ccf1868e44c40
URL:
https://github.com/llvm/llvm-project/commit/cf0be7b4920cec762639a1f39e8ccf1868e44c40
DIFF:
https://github.com/llvm/llvm-project/commit/cf0be7b4920cec762639a1f39e8ccf186
https://github.com/UmeshKalappa0 updated
https://github.com/llvm/llvm-project/pull/75564
>From 4125e4a709c594562fa6c52f045ba7442e3cb523 Mon Sep 17 00:00:00 2001
From: Umesh Kalappa
Date: Fri, 15 Dec 2023 11:52:52 +0530
Subject: [PATCH 1/4] Problem :For Kernel Modules ,emitting the relocs like
https://github.com/SunilKuravinakop updated
https://github.com/llvm/llvm-project/pull/75709
>From fe931d64741f427629407bca3e68a61bec6f2b67 Mon Sep 17 00:00:00 2001
From: Sunil Kuravinakop
Date: Sat, 16 Dec 2023 11:43:35 -0600
Subject: [PATCH 1/3] Adding parameter to fail clause (i.e. memory ord
Author: oltolm
Date: 2023-12-21T12:42:22Z
New Revision: 95e5839e06fdffd278499257c6e7679bba3d6868
URL:
https://github.com/llvm/llvm-project/commit/95e5839e06fdffd278499257c6e7679bba3d6868
DIFF:
https://github.com/llvm/llvm-project/commit/95e5839e06fdffd278499257c6e7679bba3d6868.diff
LOG: [lldb]
https://github.com/UmeshKalappa0 updated
https://github.com/llvm/llvm-project/pull/75564
>From 4125e4a709c594562fa6c52f045ba7442e3cb523 Mon Sep 17 00:00:00 2001
From: Umesh Kalappa
Date: Fri, 15 Dec 2023 11:52:52 +0530
Subject: [PATCH 1/4] Problem :For Kernel Modules ,emitting the relocs like
oltolm wrote:
Thank you David, I didn't see a button for merging the PR.
https://github.com/llvm/llvm-project/pull/74731
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/SunilKuravinakop updated
https://github.com/llvm/llvm-project/pull/75709
>From fe931d64741f427629407bca3e68a61bec6f2b67 Mon Sep 17 00:00:00 2001
From: Sunil Kuravinakop
Date: Sat, 16 Dec 2023 11:43:35 -0600
Subject: [PATCH 1/3] Adding parameter to fail clause (i.e. memory ord
https://github.com/cmtice created
https://github.com/llvm/llvm-project/pull/76171
TestGlobalModuleCache.py, a recently added test, tries to update a source file
in the build directory, but it assumes the file is writable. In our distributed
build and test system, this is not always true, so th
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: None (cmtice)
Changes
TestGlobalModuleCache.py, a recently added test, tries to update a source file
in the build directory, but it assumes the file is writable. In our distributed
build and test system, this is not always true, so the tes
github-actions[bot] wrote:
:warning: Python code formatter, darker found issues in your code. :warning:
You can test this locally with the following command:
``bash
darker --check --diff -r
11140cc238b8c4124e6f9efacb1601f81da096a0...74ac76e175917e0354d998b3b3fdc2b30bf9251b
lldb/
https://github.com/cmtice updated
https://github.com/llvm/llvm-project/pull/76171
>From 74ac76e175917e0354d998b3b3fdc2b30bf9251b Mon Sep 17 00:00:00 2001
From: Caroline Tice
Date: Thu, 21 Dec 2023 09:10:35 -0800
Subject: [PATCH 1/2] [LLDB] Fix write permission error in
TestGlobalModuleCache.py
https://github.com/cmtice updated
https://github.com/llvm/llvm-project/pull/76171
>From 74ac76e175917e0354d998b3b3fdc2b30bf9251b Mon Sep 17 00:00:00 2001
From: Caroline Tice
Date: Thu, 21 Dec 2023 09:10:35 -0800
Subject: [PATCH 1/3] [LLDB] Fix write permission error in
TestGlobalModuleCache.py
https://github.com/cmtice updated
https://github.com/llvm/llvm-project/pull/76171
>From 74ac76e175917e0354d998b3b3fdc2b30bf9251b Mon Sep 17 00:00:00 2001
From: Caroline Tice
Date: Thu, 21 Dec 2023 09:10:35 -0800
Subject: [PATCH 1/4] [LLDB] Fix write permission error in
TestGlobalModuleCache.py
Author: cmtice
Date: 2023-12-21T12:05:36-08:00
New Revision: 1830fadb78be9993cfeeaa7fb6867c3df1a53a8b
URL:
https://github.com/llvm/llvm-project/commit/1830fadb78be9993cfeeaa7fb6867c3df1a53a8b
DIFF:
https://github.com/llvm/llvm-project/commit/1830fadb78be9993cfeeaa7fb6867c3df1a53a8b.diff
LOG: [
https://github.com/cmtice closed https://github.com/llvm/llvm-project/pull/76171
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Martin Storsjö
Date: 2023-12-22T00:40:12+02:00
New Revision: f70b229e9643ddb895d491b62a5ec0655917f6f8
URL:
https://github.com/llvm/llvm-project/commit/f70b229e9643ddb895d491b62a5ec0655917f6f8
DIFF:
https://github.com/llvm/llvm-project/commit/f70b229e9643ddb895d491b62a5ec0655917f6f8.diff
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff 9d0e3a77eee290592620cf017c433bd7a751952d
9e2f17c3a3624b8dbaff499612339210d66ff975 --
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff 9d0e3a77eee290592620cf017c433bd7a751952d
9e2f17c3a3624b8dbaff499612339210d66ff975 --
https://github.com/HaohaiWen updated
https://github.com/llvm/llvm-project/pull/72250
>From 581b28b6827855643bd5bdbca0cf9ccef0de2584 Mon Sep 17 00:00:00 2001
From: Haohai Wen
Date: Tue, 14 Nov 2023 20:20:29 +0800
Subject: [PATCH 1/2] [RegAllocFast] Refactor dominates algorithm for large
basic b
https://github.com/HaohaiWen updated
https://github.com/llvm/llvm-project/pull/72250
>From 581b28b6827855643bd5bdbca0cf9ccef0de2584 Mon Sep 17 00:00:00 2001
From: Haohai Wen
Date: Tue, 14 Nov 2023 20:20:29 +0800
Subject: [PATCH 1/2] [RegAllocFast] Refactor dominates algorithm for large
basic b
https://github.com/yubingex007-a11y approved this pull request.
LGTM
https://github.com/llvm/llvm-project/pull/72250
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/HaohaiWen closed
https://github.com/llvm/llvm-project/pull/72250
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Nico Weber (nico)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/76255.diff
1 Files Affected:
- (modified)
lldb/source/Plugins/Process/Windows/Common/x64/RegisterContextWindows_x64.cpp
(+5-5)
``diff
diff -
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff 04c473bea3e0f135432698fcaafab52e1fe1b5ec
7bd8eade99bbf2408a35462f1f4f643d9649efb3 --
@@ -62,6 +62,107 @@ static RegisterRegAlloc fastRegAlloc("fast", "fast register
allocator",
namespace {
+/// Assign ascending index for instructions in machine basic block. The index
+/// can be used to determine dominance between instructions in same MBB.
+class InstrPosInd
https://github.com/HaohaiWen edited
https://github.com/llvm/llvm-project/pull/72250
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
github-actions[bot] wrote:
:warning: Python code formatter, darker found issues in your code. :warning:
You can test this locally with the following command:
``bash
darker --check --diff -r
886655869cef2e0f11da8981da30d70ad7892ff9...653ec7af66441bf9f9885622cec12c48322767b8
libcx
llvmbot wrote:
@llvm/pr-subscribers-libcxx
Author: Hristo Hristov (H-G-Hristov)
Changes
Implements parts of:
https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2023/p2637r3.html
(https://eel.is/c++draft/variant.visit)
Adds member `visit` tests and (NFC) refactors + reformats the non-me
https://github.com/gmh5225 created
https://github.com/llvm/llvm-project/pull/76453
None
>From 362c9380964e13878afae57428028f93bd80d03a Mon Sep 17 00:00:00 2001
From: gmh <1391+gmh5...@users.noreply.github.com>
Date: Thu, 28 Dec 2023 01:00:40 +0800
Subject: [PATCH] [lldb][NFC] Fix compilatio
github-actions[bot] wrote:
Thank you for submitting a Pull Request (PR) to the LLVM Project!
This PR will be automatically labeled and the relevant teams will be
notified.
If you wish to, you can add reviewers by using the "Reviewers" section on this
page.
If this is not working for you, it i
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: gmh (gmh5225)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/76453.diff
1 Files Affected:
- (modified) lldb/source/Plugins/Process/Windows/Common/TargetThreadWindows.cpp
(+2-2)
``diff
diff --git a/lldb/sour
srcarroll wrote:
I'm starting to think that maybe grouped convs should have received this
treatment first since depthwise is a subset of grouped, so a lot of this should
be abstracted to a grouped conv interface. Looking forward to hearing thoughts
https://github.com/llvm/llvm-project/pull/750
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff 886655869cef2e0f11da8981da30d70ad7892ff9
4d3ff8bd92f92404db1d1dd56e8ff4a5b5226dbb --
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff 25cd249355b0f3192ca5b0c69514ad68a1cb8897
739b26b03fd3661d1c22b975e241cbbe60ca6531 --
https://github.com/SunilKuravinakop updated
https://github.com/llvm/llvm-project/pull/75709
>From fe931d64741f427629407bca3e68a61bec6f2b67 Mon Sep 17 00:00:00 2001
From: Sunil Kuravinakop
Date: Sat, 16 Dec 2023 11:43:35 -0600
Subject: [PATCH 1/3] Adding parameter to fail clause (i.e. memory ord
Author: Walter Erquinigo
Date: 2024-01-02T13:06:13-05:00
New Revision: ffd173ba0b4a6d84f45308e78cea4af611bec10e
URL:
https://github.com/llvm/llvm-project/commit/ffd173ba0b4a6d84f45308e78cea4af611bec10e
DIFF:
https://github.com/llvm/llvm-project/commit/ffd173ba0b4a6d84f45308e78cea4af611bec10e.di
https://github.com/ZijunZhaoCCK updated
https://github.com/llvm/llvm-project/pull/75373
>From 74f256d8a77ee2ba8e0d5bbb6519aa2729cf94d5 Mon Sep 17 00:00:00 2001
From: zijunzhao
Date: Wed, 13 Dec 2023 20:07:45 +
Subject: [PATCH 01/10] Make clang report garbage target versions.
Clang always s
https://github.com/ZijunZhaoCCK updated
https://github.com/llvm/llvm-project/pull/75373
>From 74f256d8a77ee2ba8e0d5bbb6519aa2729cf94d5 Mon Sep 17 00:00:00 2001
From: zijunzhao
Date: Wed, 13 Dec 2023 20:07:45 +
Subject: [PATCH 01/11] Make clang report garbage target versions.
Clang always s
https://github.com/ZijunZhaoCCK updated
https://github.com/llvm/llvm-project/pull/75373
>From 74f256d8a77ee2ba8e0d5bbb6519aa2729cf94d5 Mon Sep 17 00:00:00 2001
From: zijunzhao
Date: Wed, 13 Dec 2023 20:07:45 +
Subject: [PATCH 01/11] Make clang report garbage target versions.
Clang always s
https://github.com/ZijunZhaoCCK updated
https://github.com/llvm/llvm-project/pull/75373
>From 74f256d8a77ee2ba8e0d5bbb6519aa2729cf94d5 Mon Sep 17 00:00:00 2001
From: zijunzhao
Date: Wed, 13 Dec 2023 20:07:45 +
Subject: [PATCH 01/11] Make clang report garbage target versions.
Clang always s
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Alex Langford (bulbazord)
Changes
BreakpointResolverAddress optionally can include the module name related to the
address that gets resolved. Currently this will never work because it sets the
name to itself (which is empty).
---
Full dif
Author: Nico Weber
Date: 2024-01-03T10:12:30Z
New Revision: 54378a7c2fd7f0ed0a3ea7ef08bc24896700e2c5
URL:
https://github.com/llvm/llvm-project/commit/54378a7c2fd7f0ed0a3ea7ef08bc24896700e2c5
DIFF:
https://github.com/llvm/llvm-project/commit/54378a7c2fd7f0ed0a3ea7ef08bc24896700e2c5.diff
LOG: [l
https://github.com/gmh5225 updated
https://github.com/llvm/llvm-project/pull/76453
>From 362c9380964e13878afae57428028f93bd80d03a Mon Sep 17 00:00:00 2001
From: gmh <1391+gmh5...@users.noreply.github.com>
Date: Thu, 28 Dec 2023 01:00:40 +0800
Subject: [PATCH] [lldb][NFC] Fix compilation issu
https://github.com/gmh5225 updated
https://github.com/llvm/llvm-project/pull/76453
>From 362c9380964e13878afae57428028f93bd80d03a Mon Sep 17 00:00:00 2001
From: gmh <1391+gmh5...@users.noreply.github.com>
Date: Thu, 28 Dec 2023 01:00:40 +0800
Subject: [PATCH 1/2] [lldb][NFC] Fix compilation
gmh5225 wrote:
> Please update `lldb/unittests/Thread/ThreadTest.cpp` as well.
Thanks for your correction.
https://github.com/llvm/llvm-project/pull/76453
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff 7fbc1de9896029636dd572a692ee90ba88285943
27851334a4229defa0772b78057c6e42a1e90c5e --
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff 7fbc1de9896029636dd572a692ee90ba88285943
0006e82ff03affbd440a678bf6078ad0b2b6e07e --
github-actions[bot] wrote:
:warning: Python code formatter, darker found issues in your code. :warning:
You can test this locally with the following command:
``bash
darker --check --diff -r
b49e0ebedfefa2f3323081425016ca2ada902263...a9b6b6fee19fd19bf1fdce6fe8e9ed35f7c1567a
lldb
Author: Alex Langford
Date: 2024-01-03T15:02:37-08:00
New Revision: 49029f926d359075d59ad4aec2d01a21d9514b02
URL:
https://github.com/llvm/llvm-project/commit/49029f926d359075d59ad4aec2d01a21d9514b02
DIFF:
https://github.com/llvm/llvm-project/commit/49029f926d359075d59ad4aec2d01a21d9514b02.diff
https://github.com/ZijunZhaoCCK updated
https://github.com/llvm/llvm-project/pull/75373
>From 74f256d8a77ee2ba8e0d5bbb6519aa2729cf94d5 Mon Sep 17 00:00:00 2001
From: zijunzhao
Date: Wed, 13 Dec 2023 20:07:45 +
Subject: [PATCH 01/11] Make clang report garbage target versions.
Clang always s
https://github.com/ZijunZhaoCCK updated
https://github.com/llvm/llvm-project/pull/75373
>From 74f256d8a77ee2ba8e0d5bbb6519aa2729cf94d5 Mon Sep 17 00:00:00 2001
From: zijunzhao
Date: Wed, 13 Dec 2023 20:07:45 +
Subject: [PATCH 01/12] Make clang report garbage target versions.
Clang always s
https://github.com/ZijunZhaoCCK updated
https://github.com/llvm/llvm-project/pull/75373
>From 74f256d8a77ee2ba8e0d5bbb6519aa2729cf94d5 Mon Sep 17 00:00:00 2001
From: zijunzhao
Date: Wed, 13 Dec 2023 20:07:45 +
Subject: [PATCH 01/13] Make clang report garbage target versions.
Clang always s
https://github.com/ZijunZhaoCCK updated
https://github.com/llvm/llvm-project/pull/66963
>From 647f5fe641b30c874bab770fced9fcec9b601161 Mon Sep 17 00:00:00 2001
From: Zijun Zhao
Date: Wed, 13 Sep 2023 14:26:01 -0700
Subject: [PATCH 1/6] [libc++] Implement ranges::contains_subrange
---
libcxx/i
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff 7df28fd61aa4603846b3ce16f9f988ccc780a584
278faa86119ed25214534951a9ccd078e4b69f1f --
https://github.com/ZijunZhaoCCK updated
https://github.com/llvm/llvm-project/pull/66963
>From 647f5fe641b30c874bab770fced9fcec9b601161 Mon Sep 17 00:00:00 2001
From: Zijun Zhao
Date: Wed, 13 Sep 2023 14:26:01 -0700
Subject: [PATCH 1/6] [libc++] Implement ranges::contains_subrange
---
libcxx/i
https://github.com/ZijunZhaoCCK updated
https://github.com/llvm/llvm-project/pull/66963
>From 647f5fe641b30c874bab770fced9fcec9b601161 Mon Sep 17 00:00:00 2001
From: Zijun Zhao
Date: Wed, 13 Sep 2023 14:26:01 -0700
Subject: [PATCH 1/7] [libc++] Implement ranges::contains_subrange
---
libcxx/i
llvmbot wrote:
@llvm/pr-subscribers-backend-x86
Author: Phoebe Wang (phoebewang)
Changes
---
Patch is 102.12 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/76901.diff
4 Files Affected:
- (modified) llvm/lib/Target/X86/X86ISelLowering.cpp (
Author: gmh
Date: 2024-01-04T08:39:50Z
New Revision: f3f4387e02b0ed637b5d843e8937116334329a65
URL:
https://github.com/llvm/llvm-project/commit/f3f4387e02b0ed637b5d843e8937116334329a65
DIFF:
https://github.com/llvm/llvm-project/commit/f3f4387e02b0ed637b5d843e8937116334329a65.diff
LOG: [lldb][NF
2701 - 2800 of 98345 matches
Mail list logo