[Lldb-commits] [lldb] [LLDB] Add unary operators Dereference and AddressOf to DIL (PR #134428)
Ilia Kuklin via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 9 15:50:42 PDT 2025
kuilpd wrote:
> I'm also not very convinced by this "FlowAnalysis" thingy. Is it supposed to be a performance optimization (collapsing *&foo to foo) or does it do something more?
FlowAnalysis is also used in subscript operator, to short-circuit getting an address of an element: `&arr[1]`, which could be a much more common use case.
https://github.com/llvm/llvm-project/pull/134428
More information about the lldb-commits
mailing list