Skip to content

Commit 0a33f2f

Browse files
committed
fixup! fix ABIMacOSX_arm.cpp
1 parent 6683453 commit 0a33f2f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lldb/source/Plugins/ABI/ARM/ABIMacOSX_arm.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1695,7 +1695,6 @@ Status ABIMacOSX_arm::SetReturnValueObject(lldb::StackFrameSP &frame_sp,
16951695
Thread *thread = frame_sp->GetThread().get();
16961696

16971697
bool is_signed;
1698-
uint32_t count;
16991698
bool is_complex;
17001699

17011700
RegisterContext *reg_ctx = thread->GetRegisterContext().get();
@@ -1767,7 +1766,7 @@ Status ABIMacOSX_arm::SetReturnValueObject(lldb::StackFrameSP &frame_sp,
17671766
"We don't support returning longer than 64 bit "
17681767
"integer values at present.");
17691768
}
1770-
} else if (compiler_type.IsFloatingPointType(count, is_complex)) {
1769+
} else if (compiler_type.IsFloatingPointType(is_complex)) {
17711770
if (is_complex)
17721771
error = Status::FromErrorString(
17731772
"We don't support returning complex values at present");

0 commit comments

Comments
 (0)