ABataev added inline comments.
================ Comment at: lib/Headers/__clang_openmp_math.h:14 +double __kmpc_pow(double, double); +double __kmpc_sin(double); + ---------------- Also, versions for float and long double ================ Comment at: lib/Headers/__clang_openmp_math.h:21 +// Define existing function to call kmpc functions. +__attribute__((always_inline, used)) static double pow(double a, double b) { + return __kmpc_pow(a, b); ---------------- Add `powf(float)`, `powl(long double)`, `sinf(float)`, `sinl(long double)` Repository: rC Clang CHANGES SINCE LAST ACTION https://reviews.llvm.org/D60907/new/ https://reviews.llvm.org/D60907 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits