[Lldb-commits] [lldb] [lldb] Fix a lldb failure following #165707 (PR #165864)

via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 31 07:18:20 PDT 2025


================
@@ -480,11 +480,9 @@ ABISysV_arc::GetReturnValueObjectSimple(Thread &thread,
   }
   // Floating point return type.
   else if (type_flags & eTypeIsFloat) {
-    uint32_t float_count = 0;
     bool is_complex = false;
 
-    if (compiler_type.IsFloatingPointType(float_count, is_complex) &&
-        1 == float_count && !is_complex) {
+    if (compiler_type.IsFloatingPointType(is_complex) && !is_complex) {
----------------
google-yfyang wrote:

Done.

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


More information about the lldb-commits mailing list