Skip to content

Commit c644b8c

Browse files
committed
[lldb] Fix a lldb failure following llvm#165707
1 parent deb54ba commit c644b8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/ABI/ARC/ABISysV_arc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ ABISysV_arc::GetReturnValueObjectSimple(Thread &thread,
483483
uint32_t float_count = 0;
484484
bool is_complex = false;
485485

486-
if (compiler_type.IsFloatingPointType(float_count, is_complex) &&
486+
if (compiler_type.IsFloatingPointType(is_complex) &&
487487
1 == float_count && !is_complex) {
488488
const size_t byte_size =
489489
llvm::expectedToOptional(compiler_type.GetByteSize(&thread))

0 commit comments

Comments
 (0)