================
@@ -218,7 +218,7 @@ class RegisterValue {
   }
 
   void SetUInt128(llvm::APInt uint) {
-    m_type = eTypeUInt128;
+    m_type = eTypeUIntBig;
     m_scalar = std::move(uint);
   }
----------------
sedymrak wrote:

I have realized (after some more testing) that what I have written above makes 
no sense. Please ignore my comment above.

According to my investigation, the enum value we are talking about is used only 
when we need to represent registers whose size is strictly larger than 64 bits. 

I am not sure what would be the best name that would the most succintly 
indicate precisely this.

These alternatives come tome my mind:
- `eTypeUInt65Plus`
- `eTypeUInt65OrMore`

https://github.com/llvm/llvm-project/pull/166363
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to