[Lldb-commits] [lldb] 03df971 - [lldb] Add support for debugging via the dynamic linker.

2021-09-10 Thread Rumeet Dhindsa via lldb-commits
Author: Rumeet Dhindsa Date: 2021-09-10T10:59:31-07:00 New Revision: 03df97101287e8cb647c6c0982c4efdb82585c21 URL: https://github.com/llvm/llvm-project/commit/03df97101287e8cb647c6c0982c4efdb82585c21 DIFF: https://github.com/llvm/llvm-project/commit/03df97101287e8cb647c6c0982c4efdb82585c21.diff

[Lldb-commits] [lldb] 120d97b - Revert "[lldb] Add support for debugging via the dynamic linker."

2021-08-24 Thread Rumeet Dhindsa via lldb-commits
Author: Rumeet Dhindsa Date: 2021-08-24T15:20:52-07:00 New Revision: 120d97b1a7a81561bb02fc7cd5dc304ef5cbe1cf URL: https://github.com/llvm/llvm-project/commit/120d97b1a7a81561bb02fc7cd5dc304ef5cbe1cf DIFF: https://github.com/llvm/llvm-project/commit/120d97b1a7a81561bb02fc7cd5dc304ef5cbe1cf.diff

[Lldb-commits] [lldb] 1cbdc07 - [lldb] Add support for debugging via the dynamic linker.

2021-08-24 Thread Rumeet Dhindsa via lldb-commits
Author: Rumeet Dhindsa Date: 2021-08-24T13:41:22-07:00 New Revision: 1cbdc07ec015d83038c08dc562d55eccfd808591 URL: https://github.com/llvm/llvm-project/commit/1cbdc07ec015d83038c08dc562d55eccfd808591 DIFF: https://github.com/llvm/llvm-project/commit/1cbdc07ec015d83038c08dc562d55eccfd808591.diff

[Lldb-commits] [lldb] d9c5613 - Update logic to close inherited file descriptors.

2021-08-19 Thread Rumeet Dhindsa via lldb-commits
Author: Rumeet Dhindsa Date: 2021-08-19T14:40:43-07:00 New Revision: d9c5613e856cf2addfbf892fc4c1ce9ef9feceaa URL: https://github.com/llvm/llvm-project/commit/d9c5613e856cf2addfbf892fc4c1ce9ef9feceaa DIFF: https://github.com/llvm/llvm-project/commit/d9c5613e856cf2addfbf892fc4c1ce9ef9feceaa.diff

Re: [Lldb-commits] [lldb] r372891 - [Dwarf] Make dw_tag_t a typedef for llvm::dwarf::Tag instead of uint16_t.

2019-09-25 Thread Rumeet Dhindsa via lldb-commits
Hi Jonas, Since dw_tag_t is an enum now, in the switch statement at following mentioned location, default case needs to be added as well. It generates a warning that some enumeration values are not handled in switch. https://github.com/llvm-mirror/lldb/blob/master/source/Plugins/SymbolFile/DWARF/U

Re: [Lldb-commits] [PATCH] D62213: [ABI] Implement Windows ABI for x86_64

2019-06-24 Thread Rumeet Dhindsa via lldb-commits
Hi Alex, It seems that the two variables in file ABIWindows_x86_64.cpp are unused: Line 1656: field_bit_width Line 1666: field_byte_flags On Mon, Jun 24, 2019 at 11:23 AM Alex Langford via Phabricator via lldb-commits wrote: > This revision was automatically updated to reflect the committed ch