The clang __builtin_* functions cannot be relied upon, as they may just emit a call to the stdlib version. So this commit adds an implementation for ceil and frexpr, as well as their float versions.
5 lines
124 B
C++
5 lines
124 B
C++
#include <assert.h>
|
|
|
|
extern "C"
|
|
long double frexpl(long double f, int *exp) { assert(false && "NYI"); *exp = 0; return 0; }
|