aboutsummaryrefslogtreecommitdiff
path: root/contrib/compiler-rt/lib/builtins/int_math.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/compiler-rt/lib/builtins/int_math.h')
-rw-r--r--contrib/compiler-rt/lib/builtins/int_math.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/contrib/compiler-rt/lib/builtins/int_math.h b/contrib/compiler-rt/lib/builtins/int_math.h
index fc81fb7f0220..aa3d0721a8ab 100644
--- a/contrib/compiler-rt/lib/builtins/int_math.h
+++ b/contrib/compiler-rt/lib/builtins/int_math.h
@@ -92,12 +92,8 @@
#endif
#if defined(_MSC_VER) && !defined(__clang__)
-#define crt_logb(x) logb((x))
-#define crt_logbf(x) logbf((x))
#define crt_logbl(x) logbl((x))
#else
-#define crt_logb(x) __builtin_logb((x))
-#define crt_logbf(x) __builtin_logbf((x))
#define crt_logbl(x) __builtin_logbl((x))
#endif