forked from OSchip/llvm-project
[libc++] Remove duplication in math_h.pass.cpp and improve coverage
Reviewed By: ldionne, huixie90, #libc Spies: mstorsjo, EricWF, libcxx-commits Differential Revision: https://reviews.llvm.org/D136908
This commit is contained in:
parent
e27e8e0541
commit
ecef6b1cb1
|
@ -33,6 +33,10 @@ struct __numeric_type
|
|||
static double __test(unsigned long);
|
||||
static double __test(long long);
|
||||
static double __test(unsigned long long);
|
||||
#ifndef _LIBCPP_HAS_NO_INT128
|
||||
static double __test(__int128_t);
|
||||
static double __test(__uint128_t);
|
||||
#endif
|
||||
static double __test(double);
|
||||
static long double __test(long double);
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue