[Lldb-commits] [PATCH] D146965: [lldb] Add support for MSP430 in LLDB.

Ilia Kuklin via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Mar 28 09:54:30 PDT 2023


kuilpd marked 8 inline comments as done.
kuilpd added inline comments.


================
Comment at: lldb/source/Expression/IRMemoryMap.cpp:113-114
 
     lldbassert(process_sp->GetAddressByteSize() == 4 ||
                end_of_memory != 0xffffffffull);
 
----------------
bulbazord wrote:
> I think with the change above we should probably make this assertion more useful.
Do we need this assert if I there is already one in the default case above?

```
    default:
      lldbassert(false && "Invalid address size.");
      return LLDB_INVALID_ADDRESS;
```


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D146965/new/

https://reviews.llvm.org/D146965



More information about the lldb-commits mailing list