[Lldb-commits] [lldb] a52173a - Use find_library for ncurses

2020-08-17 Thread Jonas Devlieghere via lldb-commits
Author: Harmen Stoppels Date: 2020-08-17T19:52:52-07:00 New Revision: a52173a3e56553d7b795bcf3cdadcf6433117107 URL: https://github.com/llvm/llvm-project/commit/a52173a3e56553d7b795bcf3cdadcf6433117107 DIFF:

[Lldb-commits] [PATCH] D86122: Fix a check that was attempting to see if an object file was in memory.

2020-08-17 Thread Greg Clayton via Phabricator via lldb-commits
clayborg created this revision. clayborg added reviewers: labath, aprantl, JDevlieghere. Herald added a project: LLDB. clayborg requested review of this revision. Checking if an object file is in memory should use the ObjectFile::IsInMemory(), not test ObjectFile::BaseAddress().

[Lldb-commits] [PATCH] D82064: [ARM64] Add QEMU testing environment setup guide for SVE testing

2020-08-17 Thread Muhammad Omair Javaid via Phabricator via lldb-commits
omjavaid updated this revision to Diff 286161. omjavaid added a comment. Herald added a subscriber: JDevlieghere. In light of review comments I have come up with this new sceheme for setting up QEMU VM based testing environment for LLDB. We now have three scripts: 1. setup.sh is used to build

[Lldb-commits] [lldb] 8bb81c2 - Convert to early exit (NFC)

2020-08-17 Thread Adrian Prantl via lldb-commits
Author: Adrian Prantl Date: 2020-08-17T14:42:25-07:00 New Revision: 8bb81c29b980d7fe37527d82cdae14f7f94727b1 URL: https://github.com/llvm/llvm-project/commit/8bb81c29b980d7fe37527d82cdae14f7f94727b1 DIFF: https://github.com/llvm/llvm-project/commit/8bb81c29b980d7fe37527d82cdae14f7f94727b1.diff

[Lldb-commits] [lldb] a1a3b86 - Convert to early exit (NFC)

2020-08-17 Thread Adrian Prantl via lldb-commits
Author: Adrian Prantl Date: 2020-08-17T14:42:25-07:00 New Revision: a1a3b86910e49bba5fb3dbbccc44f46e5619701e URL: https://github.com/llvm/llvm-project/commit/a1a3b86910e49bba5fb3dbbccc44f46e5619701e DIFF: https://github.com/llvm/llvm-project/commit/a1a3b86910e49bba5fb3dbbccc44f46e5619701e.diff

[Lldb-commits] [lldb] a615ec9 - Convert if cascade to switch (NFC)

2020-08-17 Thread Adrian Prantl via lldb-commits
Author: Adrian Prantl Date: 2020-08-17T14:42:25-07:00 New Revision: a615ec9a1bfb42c2094ecd2d07586fabec03e06f URL: https://github.com/llvm/llvm-project/commit/a615ec9a1bfb42c2094ecd2d07586fabec03e06f DIFF: https://github.com/llvm/llvm-project/commit/a615ec9a1bfb42c2094ecd2d07586fabec03e06f.diff

[Lldb-commits] [lldb] fc1464c - Simplify error reporting (NFC)

2020-08-17 Thread Adrian Prantl via lldb-commits
Author: Adrian Prantl Date: 2020-08-17T14:42:25-07:00 New Revision: fc1464c6df5f0910e0bef585e03dcce60cdd0ba7 URL: https://github.com/llvm/llvm-project/commit/fc1464c6df5f0910e0bef585e03dcce60cdd0ba7 DIFF: https://github.com/llvm/llvm-project/commit/fc1464c6df5f0910e0bef585e03dcce60cdd0ba7.diff

[Lldb-commits] [lldb] 1d5e9d3 - Convert to early exit (NFC)

2020-08-17 Thread Adrian Prantl via lldb-commits
Author: Adrian Prantl Date: 2020-08-17T14:42:24-07:00 New Revision: 1d5e9d37c33906d2d7beb2ced62c482dd77e URL: https://github.com/llvm/llvm-project/commit/1d5e9d37c33906d2d7beb2ced62c482dd77e DIFF: https://github.com/llvm/llvm-project/commit/1d5e9d37c33906d2d7beb2ced62c482dd77e.diff

[Lldb-commits] [PATCH] D85988: Fix the ability to list iOS simulator processes.

2020-08-17 Thread Greg Clayton via Phabricator via lldb-commits
clayborg added a comment. Adrian: is there something I need to do to enable simulator tests? I added a test to TestSimulatorPlatform.py but if I run: $ ../debug/bin/llvm-lit -sv lldb/test/API/macosx/simulator llvm-lit:

[Lldb-commits] [PATCH] D85988: Fix the ability to list iOS simulator processes.

2020-08-17 Thread Greg Clayton via Phabricator via lldb-commits
clayborg updated this revision to Diff 286151. clayborg added a comment. Added a "platform process list" test to each simulator test to test this functionality. The tests all launch processes and the process should be stopped at a breakpoint, so listing the processes for "ios-simulator" is a

[Lldb-commits] [PATCH] D86110: [WIP][DebugInfo] Lazily parse debug_loclist offsets

2020-08-17 Thread David Blaikie via Phabricator via lldb-commits
dblaikie created this revision. dblaikie added a reviewer: labath. Herald added subscribers: llvm-commits, lldb-commits, hiraditya, aprantl. Herald added projects: LLDB, LLVM. dblaikie requested review of this revision. Herald added a subscriber: JDevlieghere. Parsing DWARFv5 debug_loclist

[Lldb-commits] [PATCH] D85290: [lldb][gui] use left/right in the source view to scroll

2020-08-17 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. Sorry for the delay! LGTM. Repository: rLLDB LLDB CHANGES SINCE LAST ACTION https://reviews.llvm.org/D85290/new/ https://reviews.llvm.org/D85290

[Lldb-commits] [PATCH] D85290: [lldb][gui] use left/right in the source view to scroll

2020-08-17 Thread Luboš Luňák via Phabricator via lldb-commits
llunak added a comment. Ping. Repository: rLLDB LLDB CHANGES SINCE LAST ACTION https://reviews.llvm.org/D85290/new/ https://reviews.llvm.org/D85290 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

[Lldb-commits] [lldb] 9c5e25a - [lldb] Skip test_launch_simple with reproducers

2020-08-17 Thread Jonas Devlieghere via lldb-commits
Author: Jonas Devlieghere Date: 2020-08-17T11:47:07-07:00 New Revision: 9c5e25a696b28b7ab31222b31503150c0847b9c3 URL: https://github.com/llvm/llvm-project/commit/9c5e25a696b28b7ab31222b31503150c0847b9c3 DIFF:

[Lldb-commits] [lldb] 5a7b61b - [lldb] Skip TestMultipleDebuggers on Windows

2020-08-17 Thread Jonas Devlieghere via lldb-commits
Author: Jonas Devlieghere Date: 2020-08-17T11:34:25-07:00 New Revision: 5a7b61b1831e003384ae1dbc4136c27cd7a5e90c URL: https://github.com/llvm/llvm-project/commit/5a7b61b1831e003384ae1dbc4136c27cd7a5e90c DIFF:

[Lldb-commits] [lldb] 24d3210 - [lldb] Skip the Apple Simulator tests with reproducers

2020-08-17 Thread Jonas Devlieghere via lldb-commits
Author: Jonas Devlieghere Date: 2020-08-17T11:29:37-07:00 New Revision: 24d3210e62bfbbc8a80ebdff939d41bae2d5292d URL: https://github.com/llvm/llvm-project/commit/24d3210e62bfbbc8a80ebdff939d41bae2d5292d DIFF:

[Lldb-commits] [lldb] 6dabd26 - [lldb] Skip TestError.test with reproducers

2020-08-17 Thread Jonas Devlieghere via lldb-commits
Author: Jonas Devlieghere Date: 2020-08-17T10:42:58-07:00 New Revision: 6dabd267bd70ee86f47d08faa027ade169f3e330 URL: https://github.com/llvm/llvm-project/commit/6dabd267bd70ee86f47d08faa027ade169f3e330 DIFF:

[Lldb-commits] [PATCH] D85970: [lldb] Fix that log enable's -f parameter causes LLDB to crash when it can't open the log file

2020-08-17 Thread Raphael Isemann via Phabricator via lldb-commits
teemperor added a comment. In D85970#2221899 , @max-kudr wrote: > @teemperor LLDB Windows buildbot > is failing after last > commit: Build 18298 >

[Lldb-commits] [PATCH] D85970: [lldb] Fix that log enable's -f parameter causes LLDB to crash when it can't open the log file

2020-08-17 Thread Max Kudryavtsev via Phabricator via lldb-commits
max-kudr added a comment. LLDB Windows buildbot is failing after last commit: Build 18298 . Please revert or fix. Repository: rG LLVM Github Monorepo CHANGES

[Lldb-commits] [lldb] e095e98 - [lldb] Add missing LLDB_REGISTER for GarbageCollectAllocatedModules

2020-08-17 Thread Jonas Devlieghere via lldb-commits
Author: Jonas Devlieghere Date: 2020-08-17T10:14:41-07:00 New Revision: e095e98a3abc8b2852b708cb4c8cbeec0b8f1d51 URL: https://github.com/llvm/llvm-project/commit/e095e98a3abc8b2852b708cb4c8cbeec0b8f1d51 DIFF:

[Lldb-commits] [lldb] e9b0994 - [lldb] Replace unittest2.expectedFailure with expectedFailure (NFC)

2020-08-17 Thread Jonas Devlieghere via lldb-commits
Author: Jonas Devlieghere Date: 2020-08-17T10:05:49-07:00 New Revision: e9b099401262108301ecf27305b06749d1a58286 URL: https://github.com/llvm/llvm-project/commit/e9b099401262108301ecf27305b06749d1a58286 DIFF:

[Lldb-commits] [lldb] c6cc566 - [lldb] Use os.path.sep in TestInvalidArgsLog.py to fix Windows bot

2020-08-17 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-08-17T19:03:27+02:00 New Revision: c6cc566c8a95bb39c65f7b39649e804809fc8701 URL: https://github.com/llvm/llvm-project/commit/c6cc566c8a95bb39c65f7b39649e804809fc8701 DIFF:

[Lldb-commits] [lldb] 8b67b70 - [lldb] Add missing signal include for TestMultipleDebuggers.py

2020-08-17 Thread Jonas Devlieghere via lldb-commits
Author: Jonas Devlieghere Date: 2020-08-17T09:41:45-07:00 New Revision: 8b67b707b00c35d8036a0740db269593c93b3fbf URL: https://github.com/llvm/llvm-project/commit/8b67b707b00c35d8036a0740db269593c93b3fbf DIFF:

[Lldb-commits] [lldb] 6cc0b00 - [lldb] Only link against Python 3 when LLDB_ENABLE_PYTHON is set.

2020-08-17 Thread Jonas Devlieghere via lldb-commits
Author: Jonas Devlieghere Date: 2020-08-17T09:31:52-07:00 New Revision: 6cc0b00f4d0a981a858d16c8d46638cf12b43f96 URL: https://github.com/llvm/llvm-project/commit/6cc0b00f4d0a981a858d16c8d46638cf12b43f96 DIFF:

[Lldb-commits] [lldb] a0a328e - [lldb] Fix and re-enable TestMultipleDebuggers

2020-08-17 Thread Jonas Devlieghere via lldb-commits
Author: Jonas Devlieghere Date: 2020-08-17T09:20:20-07:00 New Revision: a0a328ed4fda83513ac0e1d9d30650e9b6b63d20 URL: https://github.com/llvm/llvm-project/commit/a0a328ed4fda83513ac0e1d9d30650e9b6b63d20 DIFF:

[Lldb-commits] [lldb] 99614d4 - [lldb-vscode] NFC: clang format

2020-08-17 Thread Walter Erquinigo via lldb-commits
Author: Walter Erquinigo Date: 2020-08-17T09:18:01-07:00 New Revision: 99614d410cefeb4606232e78cdcf8cf7b2620f79 URL: https://github.com/llvm/llvm-project/commit/99614d410cefeb4606232e78cdcf8cf7b2620f79 DIFF:

[Lldb-commits] [PATCH] D85976: [lldb] Get rid of helper CMake variables for Python

2020-08-17 Thread Jonas Devlieghere via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rG75966ee241a2: [lldb] Get rid of helper CMake variables for Python (authored by JDevlieghere). Herald added a project: LLDB. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION

[Lldb-commits] [lldb] 75966ee - [lldb] Get rid of helper CMake variables for Python

2020-08-17 Thread Jonas Devlieghere via lldb-commits
Author: Jonas Devlieghere Date: 2020-08-17T08:47:52-07:00 New Revision: 75966ee241a2f1b7712caa1bbe66560347b23359 URL: https://github.com/llvm/llvm-project/commit/75966ee241a2f1b7712caa1bbe66560347b23359 DIFF:

[Lldb-commits] [lldb] f5f22f0 - [lldb] Skip TestSimulatorPlatform with sanitized builds

2020-08-17 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-08-17T15:06:48+02:00 New Revision: f5f22f04481bec765ccaf6e400da24987a421c2e URL: https://github.com/llvm/llvm-project/commit/f5f22f04481bec765ccaf6e400da24987a421c2e DIFF:

[Lldb-commits] [lldb] cfb773c - [lldb][NFC] Use StringRef in CreateFunctionDeclaration/GetDeclarationName

2020-08-17 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-08-17T14:17:20+02:00 New Revision: cfb773c676236652f63f9ba031d6755d55f5d884 URL: https://github.com/llvm/llvm-project/commit/cfb773c676236652f63f9ba031d6755d55f5d884 DIFF:

[Lldb-commits] [lldb] 7e6c437 - [lldb][NFC] Remove name parameter from CreateFunctionTemplateDecl

2020-08-17 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-08-17T13:44:10+02:00 New Revision: 7e6c437fb413eb7ae102e8db869bb55a748411ff URL: https://github.com/llvm/llvm-project/commit/7e6c437fb413eb7ae102e8db869bb55a748411ff DIFF:

[Lldb-commits] [lldb] 42b9a68 - [lldb][NFC] Use expect_expr in more tests

2020-08-17 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-08-17T13:14:57+02:00 New Revision: 42b9a683523628bfbb4f7447c0ca9607f3eee83f URL: https://github.com/llvm/llvm-project/commit/42b9a683523628bfbb4f7447c0ca9607f3eee83f DIFF:

[Lldb-commits] [PATCH] D85641: [LLDB] Convert SVE macros into c++ constants and inlines

2020-08-17 Thread Muhammad Omair Javaid via Phabricator via lldb-commits
omjavaid updated this revision to Diff 285957. omjavaid added a comment. This update fixes SVE namespace name to lower case and fixes a typo in previous update. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D85641/new/ https://reviews.llvm.org/D85641 Files:

[Lldb-commits] [PATCH] D79699: Add ptrace register access for AArch64 SVE registers

2020-08-17 Thread Muhammad Omair Javaid via Phabricator via lldb-commits
omjavaid updated this revision to Diff 285956. omjavaid added a comment. This update adds check for SVE support using /proc/cpuinfo in SVE testcases. Also tests case to read predicate registers with 5 different values instead of 0xff. @labath this seems reasonable now? CHANGES SINCE LAST

[Lldb-commits] [lldb] cd2139a - [lldb][NFC] Use the proper type for the 'storage' parameter of CreateFunctionDeclaration

2020-08-17 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-08-17T12:53:58+02:00 New Revision: cd2139a527f2d829bdde7877c992215f598e927b URL: https://github.com/llvm/llvm-project/commit/cd2139a527f2d829bdde7877c992215f598e927b DIFF:

[Lldb-commits] [lldb] 6b97fa0 - [lldb] Remove OS-specific string from TestInvalidArgsLog

2020-08-17 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-08-17T11:57:43+02:00 New Revision: 6b97fa0bfefea7d9028b899a92bc29ab9b133906 URL: https://github.com/llvm/llvm-project/commit/6b97fa0bfefea7d9028b899a92bc29ab9b133906 DIFF:

[Lldb-commits] [lldb] 24c74f5 - [lldb] Don't delete orphaned shared modules in SBDebugger::DeleteTarget

2020-08-17 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-08-17T11:30:56+02:00 New Revision: 24c74f5e8c2cf263dd84292ca5d33ee0890b48dd URL: https://github.com/llvm/llvm-project/commit/24c74f5e8c2cf263dd84292ca5d33ee0890b48dd DIFF:

[Lldb-commits] [PATCH] D83933: [lldb] Don't delete orphaned shared modules in SBDebugger::DeleteTarget

2020-08-17 Thread Raphael Isemann via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rG24c74f5e8c2c: [lldb] Dont delete orphaned shared modules in SBDebugger::DeleteTarget (authored by teemperor). Herald added a project: LLDB. Herald added a subscriber: lldb-commits. Repository: rG LLVM

[Lldb-commits] [PATCH] D85993: [lldb] Set the access property on member function decls

2020-08-17 Thread Raphael Isemann via Phabricator via lldb-commits
teemperor requested changes to this revision. teemperor added a comment. This revision now requires changes to proceed. +1 for AddMethodToCXXRecordType. Calling CreateFunctionDeclaration creates a FunctionDecl which can't be inside a record. All (static/non-static) member functions in a record

[Lldb-commits] [PATCH] D85836: [lldb/Utility] Simplify and generalize Scalar class

2020-08-17 Thread Pavel Labath via Phabricator via lldb-commits
This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rG67cdb899c6b3: [lldb/Utility] Simplify and generalize Scalar class (authored by labath). Changed prior to commit:

[Lldb-commits] [lldb] 67cdb89 - [lldb/Utility] Simplify and generalize Scalar class

2020-08-17 Thread Pavel Labath via lldb-commits
Author: Pavel Labath Date: 2020-08-17T11:09:56+02:00 New Revision: 67cdb899c6b3ec231f35ca17a00023758ef127ba URL: https://github.com/llvm/llvm-project/commit/67cdb899c6b3ec231f35ca17a00023758ef127ba DIFF: https://github.com/llvm/llvm-project/commit/67cdb899c6b3ec231f35ca17a00023758ef127ba.diff

[Lldb-commits] [lldb] 2d89a3b - [lldb] Forcefully complete a type when adding nested classes

2020-08-17 Thread Pavel Labath via lldb-commits
Author: Pavel Labath Date: 2020-08-17T11:09:13+02:00 New Revision: 2d89a3ba121b96a4af9aecaf52205eab200394c3 URL: https://github.com/llvm/llvm-project/commit/2d89a3ba121b96a4af9aecaf52205eab200394c3 DIFF: https://github.com/llvm/llvm-project/commit/2d89a3ba121b96a4af9aecaf52205eab200394c3.diff

[Lldb-commits] [PATCH] D85968: [lldb] Forcefully complete a type when adding nested classes

2020-08-17 Thread Pavel Labath via Phabricator via lldb-commits
This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rG2d89a3ba121b: [lldb] Forcefully complete a type when adding nested classes (authored by labath). Changed prior to commit:

[Lldb-commits] [PATCH] D83876: [lldb] Add SBModule::GarbageCollectAllocatedModules and clear modules after each test run

2020-08-17 Thread Raphael Isemann via Phabricator via lldb-commits
This revision was not accepted when it landed; it landed in state "Needs Review". This revision was automatically updated to reflect the committed changes. Closed by commit rGc2f9454a16e4: [lldb] Add SBModule::GarbageCollectAllocatedModules and clear modules after… (authored by teemperor).

[Lldb-commits] [lldb] c2f9454 - [lldb] Add SBModule::GarbageCollectAllocatedModules and clear modules after each test run

2020-08-17 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-08-17T11:00:19+02:00 New Revision: c2f9454a16e45e1df09d8ebed6dadbc0da264442 URL: https://github.com/llvm/llvm-project/commit/c2f9454a16e45e1df09d8ebed6dadbc0da264442 DIFF:

[Lldb-commits] [PATCH] D83876: [lldb] Add SBModule::GarbageCollectAllocatedModules and clear modules after each test run

2020-08-17 Thread Raphael Isemann via Phabricator via lldb-commits
teemperor updated this revision to Diff 285938. teemperor retitled this revision from "[lldb] Add SBModule::ClearCachedModules and clear modules after each test run" to "[lldb] Add SBModule::GarbageCollectAllocatedModules and clear modules after each test run". teemperor edited the summary of

[Lldb-commits] [PATCH] D85970: [lldb] Fix that log enable's -f parameter causes LLDB to crash when it can't open the log file

2020-08-17 Thread Raphael Isemann via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rG867c347c32e2: [lldb] Fix that log enables -f parameter causes LLDB to crash when it cant… (authored by teemperor). Herald added a project: LLDB. Herald added a subscriber: lldb-commits. Repository: rG

[Lldb-commits] [lldb] 867c347 - [lldb] Fix that log enable's -f parameter causes LLDB to crash when it can't open the log file

2020-08-17 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-08-17T10:43:00+02:00 New Revision: 867c347c32e27825a649af1ca5ccf22c350d2b8c URL: https://github.com/llvm/llvm-project/commit/867c347c32e27825a649af1ca5ccf22c350d2b8c DIFF:

[Lldb-commits] [PATCH] D85993: [lldb] Set the access property on member function decls

2020-08-17 Thread Pavel Labath via Phabricator via lldb-commits
labath added a reviewer: teemperor. labath added a comment. Dwarf parser uses `TypeSystemClang::AddMethodToCXXRecordType` instead of this function to create methods (which is why there are no assertions like this when using dwarf). Maybe it would be better to change the pdb parser to use that

[Lldb-commits] [lldb] c57ea1b - [lldb] Get lldb-server platform's --socket-file working again

2020-08-17 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-08-17T10:29:06+02:00 New Revision: c57ea1b48f26caf7922bf434187e1c277f412550 URL: https://github.com/llvm/llvm-project/commit/c57ea1b48f26caf7922bf434187e1c277f412550 DIFF:

[Lldb-commits] [PATCH] D85890: [lldb] Get lldb-server platform's --socket-file working again

2020-08-17 Thread Raphael Isemann via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rGc57ea1b48f26: [lldb] Get lldb-server platforms --socket-file working again (authored by teemperor). Herald added a project: LLDB. Herald added a subscriber: lldb-commits. Repository: rG LLVM Github

[Lldb-commits] [lldb] 5913f25 - [lldb][NFC] Remove stride parameter from GetArrayElementType

2020-08-17 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-08-17T10:19:51+02:00 New Revision: 5913f2591c45dc84e872a62343f81462372ccbdb URL: https://github.com/llvm/llvm-project/commit/5913f2591c45dc84e872a62343f81462372ccbdb DIFF:

[Lldb-commits] [PATCH] D84299: [lldb][NFC] Remove stride parameter from GetArrayElementType

2020-08-17 Thread Raphael Isemann via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rG5913f2591c45: [lldb][NFC] Remove stride parameter from GetArrayElementType (authored by teemperor). Herald added a project: LLDB. Herald added a subscriber: lldb-commits. Repository: rG LLVM Github

[Lldb-commits] [PATCH] D83874: [lldb] Print the exception traceback when hitting cleanup errors

2020-08-17 Thread Raphael Isemann via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rG24fc3177c176: [lldb] Print the exception traceback when hitting cleanup errors (authored by teemperor). Herald added a project: LLDB. Herald added a subscriber: lldb-commits. Repository: rG LLVM Github

[Lldb-commits] [lldb] 24fc317 - [lldb] Print the exception traceback when hitting cleanup errors

2020-08-17 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-08-17T09:53:52+02:00 New Revision: 24fc3177c1767535aeb494511a13dabf9f6de647 URL: https://github.com/llvm/llvm-project/commit/24fc3177c1767535aeb494511a13dabf9f6de647 DIFF:

[Lldb-commits] [PATCH] D85968: [lldb] Forcefully complete a type when adding nested classes

2020-08-17 Thread Raphael Isemann via Phabricator via lldb-commits
teemperor accepted this revision. teemperor added a comment. This revision is now accepted and ready to land. LGTM Comment at: lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp:233 -static void CompleteExternalTagDeclType(TypeSystemClang , -