From 4a45838d10085defac0f3b3003a5263e34536f3b Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Tue, 16 May 2017 20:25:07 +0000 Subject: builtins: fix guard __AEABI__ -> __ARM_EABI__ llvm-svn: 303207 --- compiler-rt/lib/builtins/floatdidf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler-rt/lib/builtins/floatdidf.c') diff --git a/compiler-rt/lib/builtins/floatdidf.c b/compiler-rt/lib/builtins/floatdidf.c index fccb2907240..681fecef968 100644 --- a/compiler-rt/lib/builtins/floatdidf.c +++ b/compiler-rt/lib/builtins/floatdidf.c @@ -104,7 +104,7 @@ __floatdidf(di_int a) } #endif -#if defined(__AEABI__) +#if defined(__ARM_EABI__) AEABI_RTABI double __aeabi_l2d(di_int a) { return __floatdidf(a); } -- cgit v1.2.3