forked from OSchip/llvm-project
[libc] fix strtold_test formatting on ARM
I missed a variable when reformatting the tests. This fixes that. Differential Revision: https://reviews.llvm.org/D117161
This commit is contained in:
parent
f011a53c14
commit
04e8c8f997
|
@ -66,7 +66,7 @@ public:
|
|||
#if defined(LONG_DOUBLE_IS_DOUBLE)
|
||||
__llvm_libc::fputil::FPBits<long double> expected_fp =
|
||||
__llvm_libc::fputil::FPBits<long double>(expectedRawData64);
|
||||
const int expectedErrno = expectedErrno64;
|
||||
const int expected_errno = expectedErrno64;
|
||||
#elif defined(SPECIAL_X86_LONG_DOUBLE)
|
||||
__llvm_libc::fputil::FPBits<long double> expected_fp =
|
||||
__llvm_libc::fputil::FPBits<long double>(expectedRawData80);
|
||||
|
@ -74,7 +74,7 @@ public:
|
|||
#else
|
||||
__llvm_libc::fputil::FPBits<long double> expected_fp =
|
||||
__llvm_libc::fputil::FPBits<long double>(expectedRawData128);
|
||||
const int expectedErrno = expectedErrno128;
|
||||
const int expected_errno = expectedErrno128;
|
||||
#endif
|
||||
|
||||
errno = 0;
|
||||
|
|
Loading…
Reference in New Issue