[Lldb-commits] [lldb] [LLDB][Minidump] Have Minidumps save off and properly read TLS data (PR #109477)

2024-12-11 Thread Nico Weber via lldb-commits
nico wrote: This broke minidumps in lldb: #119598 https://github.com/llvm/llvm-project/pull/109477 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Make conversions from llvm::Error explicit with Status::FromEr… (PR #107163)

2024-09-05 Thread Nico Weber via lldb-commits
nico wrote: Looks like this breaks building on windows: http://45.33.8.238/win/93597/step_3.txt Please take a look and revert for now if it takes a while to fix. https://github.com/llvm/llvm-project/pull/107163 ___ lldb-commits mailing list lldb-comm

[Lldb-commits] [lldb] [lldb/Interpreter] Discard ScriptedThreadPlan::GetStopDescription return value (PR #96985)

2024-06-28 Thread Nico Weber via lldb-commits
@@ -106,10 +106,13 @@ ScriptInterpreter::GetOpaqueTypeFromSBEvent(const lldb::SBEvent &event) const { return event.m_opaque_ptr; } -Stream *ScriptInterpreter::GetOpaqueTypeFromSBStream( +lldb::StreamSP ScriptInterpreter::GetOpaqueTypeFromSBStream( const lldb::SBStream

[Lldb-commits] [lldb] a2e3af5 - Revert "[lldb/Interpreter] Discard ScriptedThreadPlan::GetStopDescription return value (#96985)"

2024-06-28 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2024-06-28T13:25:11+02:00 New Revision: a2e3af5d581547d3ea53e5383d6f7f1cab45120a URL: https://github.com/llvm/llvm-project/commit/a2e3af5d581547d3ea53e5383d6f7f1cab45120a DIFF: https://github.com/llvm/llvm-project/commit/a2e3af5d581547d3ea53e5383d6f7f1cab45120a.diff LO

[Lldb-commits] [lldb] [lldb/Interpreter] Discard ScriptedThreadPlan::GetStopDescription return value (PR #96985)

2024-06-28 Thread Nico Weber via lldb-commits
@@ -106,10 +106,13 @@ ScriptInterpreter::GetOpaqueTypeFromSBEvent(const lldb::SBEvent &event) const { return event.m_opaque_ptr; } -Stream *ScriptInterpreter::GetOpaqueTypeFromSBStream( +lldb::StreamSP ScriptInterpreter::GetOpaqueTypeFromSBStream( const lldb::SBStream

[Lldb-commits] [lldb] [lldb/Interpreter] Discard ScriptedThreadPlan::GetStopDescription return value (PR #96985)

2024-06-28 Thread Nico Weber via lldb-commits
@@ -106,10 +106,13 @@ ScriptInterpreter::GetOpaqueTypeFromSBEvent(const lldb::SBEvent &event) const { return event.m_opaque_ptr; } -Stream *ScriptInterpreter::GetOpaqueTypeFromSBStream( +lldb::StreamSP ScriptInterpreter::GetOpaqueTypeFromSBStream( const lldb::SBStream

[Lldb-commits] [lldb] [lldb/Interpreter] Discard ScriptedThreadPlan::GetStopDescription return value (PR #96985)

2024-06-28 Thread Nico Weber via lldb-commits
@@ -106,10 +106,13 @@ ScriptInterpreter::GetOpaqueTypeFromSBEvent(const lldb::SBEvent &event) const { return event.m_opaque_ptr; } -Stream *ScriptInterpreter::GetOpaqueTypeFromSBStream( +lldb::StreamSP ScriptInterpreter::GetOpaqueTypeFromSBStream( const lldb::SBStream

[Lldb-commits] [lldb] LLDB Debuginfod tests and a fix or two (PR #90622)

2024-05-02 Thread Nico Weber via lldb-commits
@@ -44,6 +44,10 @@ lldb_build_intel_pt = '@LLDB_BUILD_INTEL_PT@' if lldb_build_intel_pt == '1': config.enabled_plugins.append('intel-pt') +llvm_enable_curl = '@LLVM_ENABLE_CURL@' nico wrote: Is this correct? Won't this expand to 'NO' which is truthy when

[Lldb-commits] [lldb] Add a new SBExpressionOptions::SetLanguage() API (NFCI) (PR #89981)

2024-04-30 Thread Nico Weber via lldb-commits
nico wrote: Thanks for the explanation! What kind of tool reads this file? It's still weird to use tblgen to process non-td files imho. We have a bunch of places that run python scripts as part of the build (clang/utils/bundle_resources.py, clang/lib/Tooling/DumpTool/generate_cxx_src_locs.py,

[Lldb-commits] [lldb] Add a new SBExpressionOptions::SetLanguage() API (NFCI) (PR #89981)

2024-04-30 Thread Nico Weber via lldb-commits
nico wrote: I left another comment on the commit that doesn't show up here (https://github.com/llvm/llvm-project/commit/975eca0e6a3459e59e96b0df33ea0cfbd157c597). If you do want to keep the generated file: All other tablegen invocations use ".inc" for tablegen output. Maybe this could match th

[Lldb-commits] [lldb] Add a new SBExpressionOptions::SetLanguage() API (NFCI) (PR #89981)

2024-04-30 Thread Nico Weber via lldb-commits
nico wrote: Why does this use tablegen to parse a .def file? Can't you get the same behavior without tablegen, using normal xmacro techniques, something like ```c++ enum SBSourceLanguageName : uint16_t { #define HANDLE_DW_LNAME(ID, NAME, DESC, LOWER_BOUND) \ eLanguageName ## NAME = ID, #i

[Lldb-commits] [lldb] [llvm] [lldb-dap] Add support for data breakpoint. (PR #81541)

2024-02-13 Thread Nico Weber via lldb-commits
@@ -52,5 +52,6 @@ executable("lldb-dap") { "RunInTerminal.cpp", "SourceBreakpoint.cpp", "lldb-dap.cpp", +"Watchpoint.cpp" nico wrote: Please don't update gn build files if you don't use the gn build. There's a bot that is able to do it most of

[Lldb-commits] [lldb] [lldb] Expand background symbol lookup (PR #80890)

2024-02-08 Thread Nico Weber via lldb-commits
nico wrote: This doesn't build on Linux: http://45.33.8.238/linux/130329/step_4.txt Please take a look and revert for now if it takes a while to fix. (Looks like you added a definition on non apple; maybe the declaration is just still missing) https://github.com/llvm/llvm-project/pull/80890 _

[Lldb-commits] [openmp] [mlir] [clang] [flang] [compiler-rt] [lld] [lldb] [libcxx] [libunwind] [llvm] [libc] [clang-tools-extra] [libcxxabi] [clang] static operators should evaluate object argument (P

2024-01-30 Thread Nico Weber via lldb-commits
nico wrote: This might've broken clangd tests: http://45.33.8.238/linux/129484/step_9.txt Does that look related? If so, please take a look and revert for now if it takes a while to fix. https://github.com/llvm/llvm-project/pull/68485 ___ lldb-commit

[Lldb-commits] [lldb] [lldb/win] Fix -Wmissing-field-initializers warnings after 54981bb75d374 (PR #76255)

2023-12-22 Thread Nico Weber via lldb-commits
https://github.com/nico created https://github.com/llvm/llvm-project/pull/76255 None >From 7bd8eade99bbf2408a35462f1f4f643d9649efb3 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Fri, 22 Dec 2023 12:18:34 -0500 Subject: [PATCH] [lldb/win] Fix -Wmissing-field-initializers warnings after 54981b

[Lldb-commits] [lldb] 04c473b - [lldb] Fix two deprecation warnings

2023-12-22 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2023-12-22T12:11:07-05:00 New Revision: 04c473bea3e0f135432698fcaafab52e1fe1b5ec URL: https://github.com/llvm/llvm-project/commit/04c473bea3e0f135432698fcaafab52e1fe1b5ec DIFF: https://github.com/llvm/llvm-project/commit/04c473bea3e0f135432698fcaafab52e1fe1b5ec.diff LO

[Lldb-commits] [llvm] [lldb] DEBUGINFOD based DWP acquisition for LLDB (PR #70996)

2023-12-04 Thread Nico Weber via lldb-commits
nico wrote: This breaks targeting macOS versions older than 10.12 for unnecessary reason: ``` ../../llvm/lib/Debuginfod/Debuginfod.cpp:54:6: error: 'shared_mutex' is unavailable: introduced in macOS 10.12 std::shared_mutex UrlsMutex; ^ ``` You should be able to use llvm::sys::RWMutex so p

[Lldb-commits] [lldb] a6c62bf - [lldb] try to fix build on linux after fc6b72523f3d7

2023-11-27 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2023-11-28T08:53:05+09:00 New Revision: a6c62bf1a4717accc852463b664cd1012237d334 URL: https://github.com/llvm/llvm-project/commit/a6c62bf1a4717accc852463b664cd1012237d334 DIFF: https://github.com/llvm/llvm-project/commit/a6c62bf1a4717accc852463b664cd1012237d334.diff LO

[Lldb-commits] [lldb] 53096f9 - [lldb] Try to fix build after d1556e5efbf0

2023-10-26 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2023-10-26T07:37:42-07:00 New Revision: 53096f910ca874cf446417d0bf551c5d63e917b2 URL: https://github.com/llvm/llvm-project/commit/53096f910ca874cf446417d0bf551c5d63e917b2 DIFF: https://github.com/llvm/llvm-project/commit/53096f910ca874cf446417d0bf551c5d63e917b2.diff LO

[Lldb-commits] [lldb] 0af7280 - [lldb] Fix a -Wdeprecated-declarations warning

2022-10-26 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2022-10-26T13:34:56-04:00 New Revision: 0af7280a5ee005737fbf1b709909d9600e2b5c75 URL: https://github.com/llvm/llvm-project/commit/0af7280a5ee005737fbf1b709909d9600e2b5c75 DIFF: https://github.com/llvm/llvm-project/commit/0af7280a5ee005737fbf1b709909d9600e2b5c75.diff LO

[Lldb-commits] [lldb] a314a36 - [lldb] Fix deprecation warning for using std::iterator

2022-09-30 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2022-09-30T10:19:08-04:00 New Revision: a314a36aaa1d3bb27a2102820ff636f7cd0940eb URL: https://github.com/llvm/llvm-project/commit/a314a36aaa1d3bb27a2102820ff636f7cd0940eb DIFF: https://github.com/llvm/llvm-project/commit/a314a36aaa1d3bb27a2102820ff636f7cd0940eb.diff LO

[Lldb-commits] [lldb] faaff2c - [lldb] Fix deprecation warnings for hasValue and getValue in mac-only code paths

2022-09-28 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2022-09-28T20:12:32-04:00 New Revision: faaff2cdceac49d2e7c719fe994c5eee343ec818 URL: https://github.com/llvm/llvm-project/commit/faaff2cdceac49d2e7c719fe994c5eee343ec818 DIFF: https://github.com/llvm/llvm-project/commit/faaff2cdceac49d2e7c719fe994c5eee343ec818.diff LO

[Lldb-commits] [lldb] dcb9401 - Revert "When there are variable errors, display an error in VS Code's local variables view."

2022-09-28 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2022-09-28T20:07:14-04:00 New Revision: dcb94010eb8f0110c593a41e90b01365b45795e6 URL: https://github.com/llvm/llvm-project/commit/dcb94010eb8f0110c593a41e90b01365b45795e6 DIFF: https://github.com/llvm/llvm-project/commit/dcb94010eb8f0110c593a41e90b01365b45795e6.diff LO

[Lldb-commits] [lldb] 1b4b12a - Revert "[NFC] Improve FileSpec internal APIs and usage in preparation for adding caching of resolved/absolute." and follow-ups

2022-07-23 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2022-07-23T12:35:48-04:00 New Revision: 1b4b12a34022b13b35755d9c941f7f13753e5e96 URL: https://github.com/llvm/llvm-project/commit/1b4b12a34022b13b35755d9c941f7f13753e5e96 DIFF: https://github.com/llvm/llvm-project/commit/1b4b12a34022b13b35755d9c941f7f13753e5e96.diff LO

[Lldb-commits] [lldb] 7f83dae - try to fix lldb build after d489268392d23

2022-07-12 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2022-07-12T11:08:44-04:00 New Revision: 7f83dae7f584b21f0f76b466579bbb7b99b06dc5 URL: https://github.com/llvm/llvm-project/commit/7f83dae7f584b21f0f76b466579bbb7b99b06dc5 DIFF: https://github.com/llvm/llvm-project/commit/7f83dae7f584b21f0f76b466579bbb7b99b06dc5.diff LO

[Lldb-commits] [lldb] dc46ae6 - [lldb] Add support to load object files from thin archives

2022-07-05 Thread Nico Weber via lldb-commits
Author: Kaining Zhong Date: 2022-07-05T10:52:26+02:00 New Revision: dc46ae6df5f769b80b56a30f6d77f962fa90833d URL: https://github.com/llvm/llvm-project/commit/dc46ae6df5f769b80b56a30f6d77f962fa90833d DIFF: https://github.com/llvm/llvm-project/commit/dc46ae6df5f769b80b56a30f6d77f962fa90833d.diff

[Lldb-commits] [lldb] e22a60b - Revert "Reland "[Driver] Default CLANG_DEFAULT_PIE_ON_LINUX to ON"""

2022-04-07 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2022-04-07T10:07:07-04:00 New Revision: e22a60b1c898a760a73417fa225c2fbe0609a69f URL: https://github.com/llvm/llvm-project/commit/e22a60b1c898a760a73417fa225c2fbe0609a69f DIFF: https://github.com/llvm/llvm-project/commit/e22a60b1c898a760a73417fa225c2fbe0609a69f.diff LO

[Lldb-commits] [lldb] 4f2eeb6 - Revert "[lldb] Use nullptr instead of 0 or NULL (NFC)"

2022-01-01 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2022-01-01T13:35:54-05:00 New Revision: 4f2eeb6a657abf82d13e95c7ab0d7d02fab98ed1 URL: https://github.com/llvm/llvm-project/commit/4f2eeb6a657abf82d13e95c7ab0d7d02fab98ed1 DIFF: https://github.com/llvm/llvm-project/commit/4f2eeb6a657abf82d13e95c7ab0d7d02fab98ed1.diff LO

[Lldb-commits] [lldb] 99f5f0a - fix comment typos to cycle bots

2021-10-27 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2021-10-27T09:43:42-04:00 New Revision: 99f5f0a2b72bfaf0bfb527466fdd50748583559f URL: https://github.com/llvm/llvm-project/commit/99f5f0a2b72bfaf0bfb527466fdd50748583559f DIFF: https://github.com/llvm/llvm-project/commit/99f5f0a2b72bfaf0bfb527466fdd50748583559f.diff LO

[Lldb-commits] [lldb] 908c115 - [lldb/win] Default to native PDB reader when LLVM_ENABLE_DIA_SDK=NO

2021-09-21 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2021-09-21T13:02:52-04:00 New Revision: 908c1154421287c6ffa0ef06ef5225a8fd0b06a7 URL: https://github.com/llvm/llvm-project/commit/908c1154421287c6ffa0ef06ef5225a8fd0b06a7 DIFF: https://github.com/llvm/llvm-project/commit/908c1154421287c6ffa0ef06ef5225a8fd0b06a7.diff LO

[Lldb-commits] [lldb] 99ece01 - [lldb/win] Fix TestIRMemoryMapWindows.test when running tests in git bash

2021-09-16 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2021-09-16T07:40:54-04:00 New Revision: 99ece01a0f571f0df129a55bf679f7fbd0b01b75 URL: https://github.com/llvm/llvm-project/commit/99ece01a0f571f0df129a55bf679f7fbd0b01b75 DIFF: https://github.com/llvm/llvm-project/commit/99ece01a0f571f0df129a55bf679f7fbd0b01b75.diff LO

[Lldb-commits] [lldb] ea04bf3 - [lldb] Alphabetize some CMake files a bit better

2021-09-07 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2021-09-07T13:19:00-04:00 New Revision: ea04bf302cf8f32bef62208e123d9d0cb99fa55c URL: https://github.com/llvm/llvm-project/commit/ea04bf302cf8f32bef62208e123d9d0cb99fa55c DIFF: https://github.com/llvm/llvm-project/commit/ea04bf302cf8f32bef62208e123d9d0cb99fa55c.diff LO

[Lldb-commits] [lldb] 7f544f7 - Try to unbreak lldb build after 973519826edb76

2021-09-02 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2021-09-02T11:32:28-04:00 New Revision: 7f544f7658357045bde67c2f897a088558310f16 URL: https://github.com/llvm/llvm-project/commit/7f544f7658357045bde67c2f897a088558310f16 DIFF: https://github.com/llvm/llvm-project/commit/7f544f7658357045bde67c2f897a088558310f16.diff LO

[Lldb-commits] [lldb] e71fdc1 - [lldb] Stop referencing "host_lib" in cmake files

2021-08-05 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2021-08-05T22:18:37+02:00 New Revision: e71fdc1acf054271031200f87a6bfc276d8a1ebd URL: https://github.com/llvm/llvm-project/commit/e71fdc1acf054271031200f87a6bfc276d8a1ebd DIFF: https://github.com/llvm/llvm-project/commit/e71fdc1acf054271031200f87a6bfc276d8a1ebd.diff LO

[Lldb-commits] [lldb] 1156532 - [lldb] Remove a few unused .exports files

2021-08-05 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2021-08-05T22:17:00+02:00 New Revision: 11565320fd55117f04b9cc812e28a30962283c3e URL: https://github.com/llvm/llvm-project/commit/11565320fd55117f04b9cc812e28a30962283c3e DIFF: https://github.com/llvm/llvm-project/commit/11565320fd55117f04b9cc812e28a30962283c3e.diff LO

[Lldb-commits] [lldb] bf33835 - [lldb] Get rid of HAVE_SYS_TYPES_H

2021-08-03 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2021-08-03T22:14:56+02:00 New Revision: bf3383501fefc6cfe0d8f313a2814f7fa34d4492 URL: https://github.com/llvm/llvm-project/commit/bf3383501fefc6cfe0d8f313a2814f7fa34d4492 DIFF: https://github.com/llvm/llvm-project/commit/bf3383501fefc6cfe0d8f313a2814f7fa34d4492.diff LO

[Lldb-commits] [lldb] 4367cba - [lldb] Move comment about noindex next to line it refers to

2021-08-03 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2021-08-03T22:14:12+02:00 New Revision: 4367cbab4cf2cbf8f81a24bdcc2dc0612b932aa5 URL: https://github.com/llvm/llvm-project/commit/4367cbab4cf2cbf8f81a24bdcc2dc0612b932aa5 DIFF: https://github.com/llvm/llvm-project/commit/4367cbab4cf2cbf8f81a24bdcc2dc0612b932aa5.diff LO

[Lldb-commits] [lldb] 82dc463 - [lldb] Get rid of HAVE_SIGACTION

2021-08-02 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2021-08-02T20:11:35+02:00 New Revision: 82dc463bb356200fd46b90d6d5a439c3c9b31c92 URL: https://github.com/llvm/llvm-project/commit/82dc463bb356200fd46b90d6d5a439c3c9b31c92 DIFF: https://github.com/llvm/llvm-project/commit/82dc463bb356200fd46b90d6d5a439c3c9b31c92.diff LO

[Lldb-commits] [lldb] 7799ef7 - Revert "Lex: Migrate HeaderSearch::LoadedModuleMaps to FileEntryRef"

2020-12-14 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2020-12-14T22:05:08-05:00 New Revision: 7799ef7121aa7d59f4bd95cdf70035de724ead6f URL: https://github.com/llvm/llvm-project/commit/7799ef7121aa7d59f4bd95cdf70035de724ead6f DIFF: https://github.com/llvm/llvm-project/commit/7799ef7121aa7d59f4bd95cdf70035de724ead6f.diff LO

[Lldb-commits] [lldb] bc1c365 - Give microsoftDemangle() an outparam for how many input bytes were consumed.

2020-05-20 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2020-05-20T16:17:31-04:00 New Revision: bc1c3655bfd67a0b4ccece465729c39d769e9707 URL: https://github.com/llvm/llvm-project/commit/bc1c3655bfd67a0b4ccece465729c39d769e9707 DIFF: https://github.com/llvm/llvm-project/commit/bc1c3655bfd67a0b4ccece465729c39d769e9707.diff LO

[Lldb-commits] [lldb] f82b32a - Revert "Reland "[DebugInfo] Enable the debug entry values feature by default""

2020-03-13 Thread Nico Weber via lldb-commits
Author: Nico Weber Date: 2020-03-13T15:37:44-04:00 New Revision: f82b32a51e22cc56d20f695772797127d3f9d85a URL: https://github.com/llvm/llvm-project/commit/f82b32a51e22cc56d20f695772797127d3f9d85a DIFF: https://github.com/llvm/llvm-project/commit/f82b32a51e22cc56d20f695772797127d3f9d85a.diff LO

[Lldb-commits] [lldb] r368199 - Add support for deterministically linked binaries on macOS to lldb.

2019-08-07 Thread Nico Weber via lldb-commits
Author: nico Date: Wed Aug 7 12:29:04 2019 New Revision: 368199 URL: http://llvm.org/viewvc/llvm-project?rev=368199&view=rev Log: Add support for deterministically linked binaries on macOS to lldb. When ld64 links a binary deterministically using the flag ZERO_AR_DATE, it sets a timestamp of 0 f

[Lldb-commits] [lldb] r365688 - Add Python 3.6 and 3.7 to the version list

2019-07-10 Thread Nico Weber via lldb-commits
Author: nico Date: Wed Jul 10 12:18:38 2019 New Revision: 365688 URL: http://llvm.org/viewvc/llvm-project?rev=365688&view=rev Log: Add Python 3.6 and 3.7 to the version list Python 3.6 and 3.7 have been released. Differential Revision: https://reviews.llvm.org/D6 Patch from Christian Biesin

Re: [Lldb-commits] [lldb] r355103 - [cmake] Move LLDB_DISABLE_LIBEDIT handling code into a central place

2019-03-15 Thread Nico Weber via lldb-commits
On Fri, Mar 15, 2019 at 10:04 AM Pavel Labath wrote: > On 14/03/2019 21:45, Nico Weber wrote: > > I tried LLVM_ENABLE_PROJECTS=all today, and it fails with > > > > CMake Error: The following variables are used in this project, but they > > are set to NOTFOUND. > > Please set them or make sure the

Re: [Lldb-commits] [lldb] r355103 - [cmake] Move LLDB_DISABLE_LIBEDIT handling code into a central place

2019-03-14 Thread Nico Weber via lldb-commits
I tried LLVM_ENABLE_PROJECTS=all today, and it fails with CMake Error: The following variables are used in this project, but they are set to NOTFOUND. Please set them or make sure they are set and tested correctly in the CMake files: libedit_INCLUDE_DIRS used as include directory in directory /

[Lldb-commits] [lldb] r347391 - Revert 347365, its prerequisite 347364 got reverted.

2018-11-21 Thread Nico Weber via lldb-commits
Author: nico Date: Wed Nov 21 04:50:13 2018 New Revision: 347391 URL: http://llvm.org/viewvc/llvm-project?rev=347391&view=rev Log: Revert 347365, its prerequisite 347364 got reverted. Modified: lldb/trunk/source/Symbol/ClangASTContext.cpp Modified: lldb/trunk/source/Symbol/ClangASTContext.cp

[Lldb-commits] [lldb] r329697 - s/LLVM_ON_WIN32/_WIN32/, lldb

2018-04-10 Thread Nico Weber via lldb-commits
Author: nico Date: Tue Apr 10 06:33:45 2018 New Revision: 329697 URL: http://llvm.org/viewvc/llvm-project?rev=329697&view=rev Log: s/LLVM_ON_WIN32/_WIN32/, lldb LLVM_ON_WIN32 is set exactly with MSVC and MinGW (but no