зеркало из https://github.com/microsoft/clang.git
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@135927 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
430d7a1a62
Коммит
725fb0e2b7
|
@ -1049,19 +1049,18 @@ static long double
|
|||
|
||||
static float
|
||||
_TG_ATTRS
|
||||
__tg_nexttoward(float __x, float __y) {return nexttowardf(__x, __y);}
|
||||
__tg_nexttoward(float __x, long double __y) {return nexttowardf(__x, __y);}
|
||||
|
||||
static double
|
||||
_TG_ATTRS
|
||||
__tg_nexttoward(double __x, double __y) {return nexttoward(__x, __y);}
|
||||
__tg_nexttoward(double __x, long double __y) {return nexttoward(__x, __y);}
|
||||
|
||||
static long double
|
||||
_TG_ATTRS
|
||||
__tg_nexttoward(long double __x, long double __y) {return nexttowardl(__x, __y);}
|
||||
|
||||
#undef nexttoward
|
||||
#define nexttoward(__x, __y) __tg_nexttoward(__tg_promote2((__x), (__y))(__x), \
|
||||
__tg_promote2((__x), (__y))(__y))
|
||||
#define nexttoward(__x, __y) __tg_nexttoward(__tg_promote1((__x))(__x), (__y))
|
||||
|
||||
// remainder
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче