[Lldb-commits] [PATCH] D68856: convert SBDebugger::***FileHandle() wrappers to native files.

2019-10-21 Thread Michał Górny via Phabricator via lldb-commits
mgorny added a comment. In D68856#1717332 , @lawrence_danna wrote: > I spoke too soon, I don't have a *usable* netbsd VM. > > @mgorny, Do you have a machine you can debug on yourself? Yes. > Do those errors happen if you run the same test on an

[Lldb-commits] [lldb] d602e0d - fix PythonDataObjectsTest.TestExceptions on windows

2019-10-21 Thread Lawrence D'Anna via lldb-commits
Author: Lawrence D'Anna Date: 2019-10-22T04:00:37Z New Revision: d602e0d0cab270761553c79d2e42b8ac6b756157 URL: https://github.com/llvm/llvm-project/commit/d602e0d0cab270761553c79d2e42b8ac6b756157 DIFF: https://github.com/llvm/llvm-project/commit/d602e0d0cab270761553c79d2e42b8ac6b756157.diff

[Lldb-commits] [PATCH] D69214: remove multi-argument form of PythonObject::Reset()

2019-10-21 Thread Lawrence D'Anna via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rG04edd1893c2d: remove multi-argument form of PythonObject::Reset() (authored by lawrence_danna). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D69214/new/

[Lldb-commits] [lldb] 04edd18 - remove multi-argument form of PythonObject::Reset()

2019-10-21 Thread Lawrence D'Anna via lldb-commits
Author: Lawrence D'Anna Date: 2019-10-22T02:32:37Z New Revision: 04edd1893c2d0f35880fd5f81e78dc23979df0b9 URL: https://github.com/llvm/llvm-project/commit/04edd1893c2d0f35880fd5f81e78dc23979df0b9 DIFF: https://github.com/llvm/llvm-project/commit/04edd1893c2d0f35880fd5f81e78dc23979df0b9.diff

[Lldb-commits] [PATCH] D68856: convert SBDebugger::***FileHandle() wrappers to native files.

2019-10-21 Thread Lawrence D'Anna via Phabricator via lldb-commits
lawrence_danna added a comment. @mgorny can you at least point me at the setup scripts buildbot us using for netbsd? What dependencies are installed? How is cmake invoked? I'm getting a ton on unrelated problems just trying to build it. Repository: rG LLVM Github Monorepo CHANGES

[Lldb-commits] [PATCH] D69230: RFC: specialized Optional for T that can represent its own invalid state

2019-10-21 Thread Lawrence D'Anna via Phabricator via lldb-commits
lawrence_danna updated this revision to Diff 225983. lawrence_danna added a comment. add a comment explaining OptionalInfo Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D69230/new/ https://reviews.llvm.org/D69230 Files:

[Lldb-commits] [PATCH] D69230: RFC: specialized Optional for T that can represent its own invalid state

2019-10-21 Thread Lawrence D'Anna via Phabricator via lldb-commits
lawrence_danna updated this revision to Diff 225984. lawrence_danna added a comment. edit comment Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D69230/new/ https://reviews.llvm.org/D69230 Files: llvm/include/llvm/ADT/Optional.h

[Lldb-commits] [PATCH] D69230: RFC: specialized Optional for T that can represent its own invalid state

2019-10-21 Thread Lawrence D'Anna via Phabricator via lldb-commits
lawrence_danna added a comment. In D69230#1717364 , @labath wrote: > > The thing I would like to see here is to have this behaviour be configurable > via a traits argument of the Optional class, similarly to how DenseMap allows > the type to specify

[Lldb-commits] [PATCH] D69148: Disable exit-on-SIGPIPE in lldb

2019-10-21 Thread Vedant Kumar via Phabricator via lldb-commits
vsk marked an inline comment as done. vsk added a comment. I admit I hadn't paid enough attention to the order in which signal handlers were registered in lldb. Comment at: lldb/tools/driver/Driver.cpp:850 #if !defined(_MSC_VER) signal(SIGPIPE, SIG_IGN);

[Lldb-commits] [PATCH] D69230: RFC: specialized Optional for T that can represent its own invalid state

2019-10-21 Thread Lawrence D'Anna via Phabricator via lldb-commits
lawrence_danna updated this revision to Diff 225980. lawrence_danna added a comment. call the traits struct OptionalInfo for consistency with DenseMap Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D69230/new/ https://reviews.llvm.org/D69230 Files:

[Lldb-commits] [PATCH] D69273: ValueObject: Fix a crash related to children address type computation

2019-10-21 Thread Jim Ingham via Phabricator via lldb-commits
jingham added a comment. Except for the comment comment this looks fine. I think the Host -> Load address code isn't quite right, though it looks like that's not your doing. The main reason why you would copy a ValueObject into Host memory it is to freeze-dry it as a ConstResult. Since that

[Lldb-commits] [PATCH] D69148: Disable exit-on-SIGPIPE in lldb

2019-10-21 Thread Pavel Labath via Phabricator via lldb-commits
labath added a comment. In D69148#1717453 , @labath wrote: > I'm not too worried about adding those tests here. I'm not too worried about *not* adding those tests here. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION

[Lldb-commits] [PATCH] D69230: RFC: specialized Optional for T that can represent its own invalid state

2019-10-21 Thread Lawrence D'Anna via Phabricator via lldb-commits
lawrence_danna updated this revision to Diff 225975. lawrence_danna added a comment. fix some silly bugs Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D69230/new/ https://reviews.llvm.org/D69230 Files: llvm/include/llvm/ADT/Optional.h

[Lldb-commits] [PATCH] D69148: Disable exit-on-SIGPIPE in lldb

2019-10-21 Thread Pavel Labath via Phabricator via lldb-commits
labath added a comment. In D69148#1717361 , @vsk wrote: > A problem I'm encountering with this is that the static initializer from > Signals.inc don't appear to be re-run between death tests. This makes the > death tests pretty brittle, imo, as swapping

[Lldb-commits] [PATCH] D69286: I implemented the features listed in this document: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0616r0.pdf and built libc++ using ninja without any errors/w

2019-10-21 Thread Fady Farag via Phabricator via lldb-commits
Afadyfarag created this revision. Afadyfarag added reviewers: clayborg, aprantl, JDevlieghere. Herald added subscribers: libcxx-commits, ldionne, christof, mgorny. Herald added a reviewer: EricWF. Herald added a project: libc++. 1. Changes: libcxx/include/numeric Repository: rG LLVM Github

[Lldb-commits] [PATCH] D69285: minidump: Rename some architecture constants

2019-10-21 Thread Pavel Labath via Phabricator via lldb-commits
labath created this revision. labath added reviewers: amccarth, clayborg. Herald added subscribers: fedor.sergeev, hiraditya, kristof.beyls. Herald added projects: LLDB, LLVM. The architecture enum contains two kinds of contstants: the "official" ones defined by Microsoft, and unofficial

[Lldb-commits] [PATCH] D69230: RFC: specialized Optional for T that can represent its own invalid state

2019-10-21 Thread Lawrence D'Anna via Phabricator via lldb-commits
lawrence_danna updated this revision to Diff 225967. lawrence_danna added a comment. ugh I edited the wrong revision, reverted. Sorry for the noise. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D69230/new/ https://reviews.llvm.org/D69230 Files:

[Lldb-commits] [PATCH] D69214: remove multi-argument form of PythonObject::Reset()

2019-10-21 Thread Lawrence D'Anna via Phabricator via lldb-commits
lawrence_danna updated this revision to Diff 225969. lawrence_danna added a comment. removed blank lines from python-wrapper.swig Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D69214/new/ https://reviews.llvm.org/D69214 Files:

[Lldb-commits] [lldb] e57fe85 - whitespace cleanup

2019-10-21 Thread Adrian Prantl via lldb-commits
Author: Adrian Prantl Date: 2019-10-21T22:48:27Z New Revision: e57fe85a599a8cc4990d6f4605f86b89dcb952b3 URL: https://github.com/llvm/llvm-project/commit/e57fe85a599a8cc4990d6f4605f86b89dcb952b3 DIFF: https://github.com/llvm/llvm-project/commit/e57fe85a599a8cc4990d6f4605f86b89dcb952b3.diff

[Lldb-commits] [PATCH] D69230: RFC: specialized Optional for T that can represent its own invalid state

2019-10-21 Thread Lawrence D'Anna via Phabricator via lldb-commits
lawrence_danna updated this revision to Diff 225965. lawrence_danna added a comment. Herald added a project: LLDB. Herald added a subscriber: lldb-commits. remove empty lines Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D69230/new/

[Lldb-commits] [PATCH] D69230: RFC: specialized Optional for T that can represent its own invalid state

2019-10-21 Thread Pavel Labath via Phabricator via lldb-commits
labath added a reviewer: dblaikie. labath added a subscriber: dblaikie. labath added a comment. Lets loop in @dblaikie for start, and see how it goes from there. You can also check who modified/reviewed changes to this file lately.. I am a very big opponent of IsValid() methods, and so I am

[Lldb-commits] [PATCH] D69148: Disable exit-on-SIGPIPE in lldb

2019-10-21 Thread Vedant Kumar via Phabricator via lldb-commits
vsk marked an inline comment as done. vsk added a comment. In D69148#1715532 , @labath wrote: > In D69148#1714785 , @vsk wrote: > > > The death tests are flaky. I've noticed two issues: > > > > 1. When run under

[Lldb-commits] [lldb] 667c2eb - Factor out common test functionality into a helper class. (NFC)

2019-10-21 Thread Adrian Prantl via lldb-commits
Author: Adrian Prantl Date: 2019-10-21T22:46:53Z New Revision: 667c2eb08b92907b260aee64a25250f610fcdc30 URL: https://github.com/llvm/llvm-project/commit/667c2eb08b92907b260aee64a25250f610fcdc30 DIFF: https://github.com/llvm/llvm-project/commit/667c2eb08b92907b260aee64a25250f610fcdc30.diff

[Lldb-commits] [PATCH] D68856: convert SBDebugger::***FileHandle() wrappers to native files.

2019-10-21 Thread Lawrence D'Anna via Phabricator via lldb-commits
lawrence_danna added a comment. I spoke too soon, I don't have a *usable* netbsd VM. @mgorny, Do you have a machine you can debug on yourself? Do those errors happen if you run the same test on an interactive terminal? It could be the stdin stream is not set to a valid file descriptor for

[Lldb-commits] [lldb] 3434472 - XFAIL TestLocalVariables.py on Windows

2019-10-21 Thread Jonas Devlieghere via lldb-commits
Author: Jonas Devlieghere Date: 2019-10-21T22:16:28Z New Revision: 3434472ed74141848634b5eb3cd625d651e22562 URL: https://github.com/llvm/llvm-project/commit/3434472ed74141848634b5eb3cd625d651e22562 DIFF: https://github.com/llvm/llvm-project/commit/3434472ed74141848634b5eb3cd625d651e22562.diff

[Lldb-commits] [PATCH] D68856: convert SBDebugger::***FileHandle() wrappers to native files.

2019-10-21 Thread Lawrence D'Anna via Phabricator via lldb-commits
lawrence_danna added a comment. In D68856#1717257 , @mgorny wrote: > In D68856#1717247 , @lawrence_danna > wrote: > > > sure, um do you have a netbsd machine handy? > > > If you mean one I could you access to,

[Lldb-commits] [PATCH] D69100: COFF: Create a separate "section" for the file header

2019-10-21 Thread Pavel Labath via Phabricator via lldb-commits
labath added a comment. In D69100#1717251 , @amccarth wrote: > I'm OK with this. I'm just wondering whether it would be a good idea to make > it clear that these header sections are "not considered to be a section in > the strictest sense." Is the

[Lldb-commits] [PATCH] D68961: Add support for DW_AT_export_symbols for anonymous structs

2019-10-21 Thread Pavel Labath via Phabricator via lldb-commits
labath added a comment. In D68961#1717197 , @shafik wrote: > When the I added the feature to the front end tests were added to verify that > `DW_AT_export_symbols` is being generated for anonymous structs in D66605 >

[Lldb-commits] [lldb] ed870cc - Found more timeouts to unify.

2019-10-21 Thread Adrian Prantl via lldb-commits
Author: Adrian Prantl Date: 2019-10-21T20:50:45Z New Revision: ed870cce676ec873d5d0c9e084744ffba0eb67fc URL: https://github.com/llvm/llvm-project/commit/ed870cce676ec873d5d0c9e084744ffba0eb67fc DIFF: https://github.com/llvm/llvm-project/commit/ed870cce676ec873d5d0c9e084744ffba0eb67fc.diff

[Lldb-commits] [PATCH] D68856: convert SBDebugger::***FileHandle() wrappers to native files.

2019-10-21 Thread Michał Górny via Phabricator via lldb-commits
mgorny added a comment. In D68856#1717247 , @lawrence_danna wrote: > sure, um do you have a netbsd machine handy? If you mean one I could you access to, then I'm afraid not. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION

[Lldb-commits] [PATCH] D69100: COFF: Create a separate "section" for the file header

2019-10-21 Thread Adrian McCarthy via Phabricator via lldb-commits
amccarth accepted this revision. amccarth added a comment. I'm OK with this. I'm just wondering whether it would be a good idea to make it clear that these header sections are "not considered to be a section in the strictest sense." Is the distinction going to be important to future code

[Lldb-commits] [PATCH] D69214: remove multi-argument form of PythonObject::Reset()

2019-10-21 Thread Pavel Labath via Phabricator via lldb-commits
labath accepted this revision. labath added inline comments. This revision is now accepted and ready to land. Comment at: lldb/scripts/Python/python-wrapper.swig:226 { -using namespace lldb_private; if (python_class_name == NULL || python_class_name[0] == '\0' ||

[Lldb-commits] [PATCH] D68856: convert SBDebugger::***FileHandle() wrappers to native files.

2019-10-21 Thread Lawrence D'Anna via Phabricator via lldb-commits
lawrence_danna added a comment. In D68856#1717207 , @mgorny wrote: > I'm afraid this causes a few test failures on NetBSD, e.g.: >

[Lldb-commits] [PATCH] D68968: [android/process info] Introduce display_name

2019-10-21 Thread walter erquinigo via Phabricator via lldb-commits
wallace updated this revision to Diff 225947. wallace retitled this revision from "[android/process info] Introduce bundle id" to "[android/process info] Introduce display_name". wallace edited the summary of this revision. wallace added a comment. Herald added a subscriber: kristof.beyls. now

[Lldb-commits] [PATCH] D69100: COFF: Create a separate "section" for the file header

2019-10-21 Thread Martin Storsjö via Phabricator via lldb-commits
mstorsjo accepted this revision. mstorsjo added a comment. This revision is now accepted and ready to land. I've happened to poke around a bit more in this piece of code now recently, and it does indeed seem reasonable. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D69100/new/

[Lldb-commits] [PATCH] D68856: convert SBDebugger::***FileHandle() wrappers to native files.

2019-10-21 Thread Michał Górny via Phabricator via lldb-commits
mgorny added a comment. I'm afraid this causes a few test failures on NetBSD, e.g.: http://lab.llvm.org:8011/builders/netbsd-amd64/builds/22255/steps/run%20unit%20tests/logs/FAIL%3A%20lldb-api%3A%3ATestDefaultConstructorForAPIObjects.py Could you help me debugging it? I haven't been working on

[Lldb-commits] [PATCH] D69214: remove multi-argument form of PythonObject::Reset()

2019-10-21 Thread Lawrence D'Anna via Phabricator via lldb-commits
lawrence_danna added inline comments. Comment at: lldb/scripts/Python/python-extensions.swig:683-686 if (desc_len > 0) -return lldb_private::PythonString(llvm::StringRef(desc, desc_len)).release(); +return

[Lldb-commits] [PATCH] D69214: remove multi-argument form of PythonObject::Reset()

2019-10-21 Thread Lawrence D'Anna via Phabricator via lldb-commits
lawrence_danna updated this revision to Diff 225942. lawrence_danna marked 14 inline comments as done. lawrence_danna added a comment. fixes Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D69214/new/ https://reviews.llvm.org/D69214 Files:

[Lldb-commits] [PATCH] D68961: Add support for DW_AT_export_symbols for anonymous structs

2019-10-21 Thread Shafik Yaghmour via Phabricator via lldb-commits
shafik added a comment. In D68961#1714241 , @labath wrote: > In D68961#1713566 , @shafik wrote: > > > We also have the lldb-cmake-matrix > > bot

[Lldb-commits] [PATCH] D68961: Add support for DW_AT_export_symbols for anonymous structs

2019-10-21 Thread Shafik Yaghmour via Phabricator via lldb-commits
shafik added a comment. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D68961/new/ https://reviews.llvm.org/D68961 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [PATCH] D69210: [Disassembler] Simplify MCInst predicates

2019-10-21 Thread Greg Clayton via Phabricator via lldb-commits
clayborg added a comment. In D69210#1717042 , @vsk wrote: > In D69210#1716861 , @clayborg wrote: > > > In D69210#1715679 , @vsk wrote: > > > > > Hm, this patch is bugging

[Lldb-commits] [PATCH] D69210: [Disassembler] Simplify MCInst predicates

2019-10-21 Thread Vedant Kumar via Phabricator via lldb-commits
vsk marked an inline comment as done. vsk added a comment. In D69210#1716861 , @clayborg wrote: > In D69210#1715679 , @vsk wrote: > > > Hm, this patch is bugging me. > > > > It looks a bit like instructions are

[Lldb-commits] [PATCH] D69273: ValueObject: Fix a crash related to children address type computation

2019-10-21 Thread Greg Clayton via Phabricator via lldb-commits
clayborg accepted this revision. clayborg added a comment. This revision is now accepted and ready to land. Looks good! CHANGES SINCE LAST ACTION https://reviews.llvm.org/D69273/new/ https://reviews.llvm.org/D69273 ___ lldb-commits mailing list

[Lldb-commits] [PATCH] D69273: ValueObject: Fix a crash related to children address type computation

2019-10-21 Thread Pavel Labath via Phabricator via lldb-commits
labath created this revision. labath added reviewers: jingham, clayborg. Herald added a subscriber: aprantl. This patch fixes a crash encountered when debugging optimized code. If some variable has been completely optimized out, but it's value is nonetheless known, the compiler can replace it

[Lldb-commits] [lldb] 5827a82 - Unify timeouts in gdbserver tests and ensure they are larger if ASAN is enabled.

2019-10-21 Thread Adrian Prantl via lldb-commits
Author: Adrian Prantl Date: 2019-10-21T17:19:42Z New Revision: 5827a82a5870fcb59a9fb34e6891ca0f009d282a URL: https://github.com/llvm/llvm-project/commit/5827a82a5870fcb59a9fb34e6891ca0f009d282a DIFF: https://github.com/llvm/llvm-project/commit/5827a82a5870fcb59a9fb34e6891ca0f009d282a.diff

[Lldb-commits] [PATCH] D69210: [Disassembler] Simplify MCInst predicates

2019-10-21 Thread Greg Clayton via Phabricator via lldb-commits
clayborg added a comment. In D69210#1715679 , @vsk wrote: > Hm, this patch is bugging me. > > It looks a bit like instructions are still decoded multiple times in > different ways (e.g. in the `Decode` and > `CalculateMnemonicOperandsAndComment`

[Lldb-commits] [lldb] 7a79e10 - [lldb] Add test for executing static initializers in expression command

2019-10-21 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2019-10-21T16:07:45Z New Revision: 7a79e10a82e0d5f84385566493823959dc1697b3 URL: https://github.com/llvm/llvm-project/commit/7a79e10a82e0d5f84385566493823959dc1697b3 DIFF: https://github.com/llvm/llvm-project/commit/7a79e10a82e0d5f84385566493823959dc1697b3.diff

[Lldb-commits] [PATCH] D66795: [Mips] Use appropriate private label prefix based on Mips ABI

2019-10-21 Thread Eric Christopher via Phabricator via lldb-commits
echristo added a comment. I kinda want the option to be encoded in the triple for earlier testing of linking issues, but for now this is probably OK. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D66795/new/ https://reviews.llvm.org/D66795

[Lldb-commits] [PATCH] D66795: [Mips] Use appropriate private label prefix based on Mips ABI

2019-10-21 Thread Simon Atanasyan via Phabricator via lldb-commits
atanasyan added a comment. In D66795#1706011 , @mbrkusanin wrote: > @echristo @craig.topper @tstellar @dylanmckay @petecoup > If there are no objections then I'll split this into llvm, clang and lldb > patches and commit them next week. Mirko, I think

[Lldb-commits] [PATCH] D69254: [lldb] drop .symtab removal in minidebuginfo tests

2019-10-21 Thread Konrad Wilhelm Kleine via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rG9129a281cd5b: [lldb] drop .symtab removal in minidebuginfo tests (authored by kwk). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D69254/new/

[Lldb-commits] [lldb] 9129a28 - [lldb] drop .symtab removal in minidebuginfo tests

2019-10-21 Thread Konrad Kleine via lldb-commits
Author: Konrad Kleine Date: 2019-10-21T14:11:21Z New Revision: 9129a281cd5b8b1fb804be1de396de4a42676570 URL: https://github.com/llvm/llvm-project/commit/9129a281cd5b8b1fb804be1de396de4a42676570 DIFF: https://github.com/llvm/llvm-project/commit/9129a281cd5b8b1fb804be1de396de4a42676570.diff

[Lldb-commits] [PATCH] D69214: remove multi-argument form of PythonObject::Reset()

2019-10-21 Thread Pavel Labath via Phabricator via lldb-commits
labath added inline comments. Comment at: lldb/scripts/Python/python-extensions.swig:683-686 if (desc_len > 0) -return lldb_private::PythonString(llvm::StringRef(desc, desc_len)).release(); +return

[Lldb-commits] [PATCH] D69254: [lldb] drop .symtab removal in minidebuginfo tests

2019-10-21 Thread George Rimar via Phabricator via lldb-commits
grimar accepted this revision. grimar added a comment. This revision is now accepted and ready to land. LGTM. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D69254/new/ https://reviews.llvm.org/D69254

[Lldb-commits] [PATCH] D69254: [lldb] drop .symtab removal in minidebuginfo tests

2019-10-21 Thread Konrad Wilhelm Kleine via Phabricator via lldb-commits
kwk requested review of this revision. kwk added subscribers: grimar, labath. kwk added a comment. @grimar @labath tests did pass locally. Are you fine with this change then? Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D69254/new/

[Lldb-commits] [PATCH] D69254: [lldb] drop .symtab removal in minidebuginfo tests

2019-10-21 Thread Konrad Wilhelm Kleine via Phabricator via lldb-commits
kwk created this revision. Herald added subscribers: lldb-commits, MaskRay, arichardson, emaste. Herald added a reviewer: espindola. Herald added a reviewer: alexshap. Herald added a project: LLDB. kwk planned changes to this revision. kwk added a comment. Still tests are running locally...

[Lldb-commits] [PATCH] D69254: [lldb] drop .symtab removal in minidebuginfo tests

2019-10-21 Thread Konrad Wilhelm Kleine via Phabricator via lldb-commits
kwk planned changes to this revision. kwk added a comment. Still tests are running locally... Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D69254/new/ https://reviews.llvm.org/D69254 ___ lldb-commits

[Lldb-commits] [PATCH] D69226: [LLDB] [Windows] Initial support for ARM register contexts

2019-10-21 Thread Martin Storsjö via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rGa59444a35608: [LLDB] [Windows] Initial support for ARM register contexts (authored by mstorsjo). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D69226/new/

[Lldb-commits] [lldb] a59444a - [LLDB] [Windows] Initial support for ARM register contexts

2019-10-21 Thread Martin Storsjo via lldb-commits
Author: Martin Storsjo Date: 2019-10-21T08:02:34Z New Revision: a59444a35608988e727fe3761e34f1fad6097617 URL: https://github.com/llvm/llvm-project/commit/a59444a35608988e727fe3761e34f1fad6097617 DIFF: https://github.com/llvm/llvm-project/commit/a59444a35608988e727fe3761e34f1fad6097617.diff