[Lldb-commits] [lldb] [lldb] Fix a lldb failure following #165707 (PR #165864)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Fri Oct 31 06:55:51 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) {
----------------
Michael137 wrote:
this will also need to check `!compiler_type.IsVectorType()`
https://github.com/llvm/llvm-project/pull/165864
More information about the lldb-commits
mailing list