[Lldb-commits] [lldb] [lldb] Add bitwise operators to DIL (PR #209768)

Ilia Kuklin via lldb-commits lldb-commits at lists.llvm.org
Thu Jul 23 12:57:11 PDT 2026


================
@@ -28,7 +34,7 @@ cast_expression = unary_expression
 unary_expression = postfix_expression
                  | unary_operator cast_expression ;
 
-unary_operator = "*" | "&" | "+" | "-";
+unary_operator = "*" | "&" | "+" | "-" | "~";
----------------
kuilpd wrote:

We don't do any function name lookups at this point. If we start doing function calls, I don't think calling destructors is something that needs to be implemented, it seems very unlikely to be used for data inspection. But even if we end up doing it, we can think about how to handle this at that point.

https://github.com/llvm/llvm-project/pull/209768


More information about the lldb-commits mailing list