Skip to content
Snippets Groups Projects
Commit 5c41d3a5 authored by Artem Belevich's avatar Artem Belevich
Browse files

Added missing '__'.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@260719 91177308-0d34-0410-b5e6-96231b3b80d8
parent 70692f3f
No related branches found
No related tags found
No related merge requests found
......@@ -156,7 +156,7 @@ using ::nanf;
using ::nearbyint;
using ::nextafter;
__DEVICE__ float nexttoward(float __from, float __to) {
return __builtin_nexttowardf(from, to);
return __builtin_nexttowardf(__from, __to);
}
__DEVICE__ double nexttoward(double __from, double __to) {
return __builtin_nexttoward(__from, __to);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment