[Lldb-commits] [lldb] [LLDB] Add type casting to DIL, part 2 or 3 (PR #170332)
via lldb-commits
lldb-commits at lists.llvm.org
Wed Dec 10 22:19:13 PST 2025
================
@@ -46,6 +46,13 @@ enum class CastKind {
eNone, ///< Type promotion casting
};
+/// Promotions allowed for type casts in DIL.
+enum CastPromotionKind {
+ eArithmetic,
+ ePointer,
+ eNone,
----------------
cmtice wrote:
Done. Moved CastPromotionKind enums into CastKind. (Eliminated CastPromotionKind -- determined separate enum is not needed after all).
https://github.com/llvm/llvm-project/pull/170332
More information about the lldb-commits
mailing list