[Lldb-commits] [lldb] [lldb] Mark enum types as scalar in clang typesystem (PR #192711)

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Sat Apr 18 09:22:01 PDT 2026


================
@@ -3202,7 +3202,7 @@ lldb::ValueObjectSP ValueObject::CastToBasicType(CompilerType type) {
   }
 
   if (type.IsInteger()) {
-    if (!is_scalar || is_integer) {
+    if ((is_enum && is_scalar) || !is_scalar || is_integer) {
----------------
Michael137 wrote:

Why is this needed in this change in this PR?

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


More information about the lldb-commits mailing list