[Lldb-commits] [lldb] [LLDB] Add type casting to DIL, part 1 of 3. (PR #165199)

Ilia Kuklin via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 29 11:58:11 PDT 2025


================
@@ -35,6 +36,14 @@ enum class UnaryOpKind {
   Deref,  // "*"
 };
 
+/// The C-Style casts allowed by DIL.
----------------
kuilpd wrote:

We might implement at least `static_cast` and `reinterpret_cast` later. Since we are trying to emulate the C-style behavior here, I think it's better to leave it as is to avoid confusion. 

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


More information about the lldb-commits mailing list