[Lldb-commits] [lldb] [lldb][TypeSystemClang] Allow arrays to be dereferenced in C/C++. (PR #135843)
Ilia Kuklin via lldb-commits
lldb-commits at lists.llvm.org
Fri Apr 25 12:20:28 PDT 2025
kuilpd wrote:
> It's also possible that the implementation of Dereference is just too persistent. I think it's doing too much. I've created https://github.com/llvm/llvm-project/pull/137311 which I think is a better way to approach dereferencing (BTW, I think you'll need to do something similar in the new frame var implementation). You could try whether patching that in causes the recursion to go away.
This seems to fix the issue, I was able to remove the type check and rely just on the success of `GetDereferencedType`.
I will wait until you merge that patch before updating and applying this one.
https://github.com/llvm/llvm-project/pull/135843
More information about the lldb-commits
mailing list