diff options
| author | Saleem Abdulrasool <compnerd@compnerd.org> | 2017-05-16 20:25:07 +0000 |
|---|---|---|
| committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2017-05-16 20:25:07 +0000 |
| commit | 4a45838d10085defac0f3b3003a5263e34536f3b (patch) | |
| tree | 837026a66b8b150fdbbd6320748abc2d8acc2c15 /compiler-rt/lib/builtins/floatdidf.c | |
| parent | 2cbfd2506ab8aa8574324dbfac50e5bfcc31484c (diff) | |
| download | bcm5719-llvm-4a45838d10085defac0f3b3003a5263e34536f3b.tar.gz bcm5719-llvm-4a45838d10085defac0f3b3003a5263e34536f3b.zip | |
builtins: fix guard __AEABI__ -> __ARM_EABI__
llvm-svn: 303207
Diffstat (limited to 'compiler-rt/lib/builtins/floatdidf.c')
| -rw-r--r-- | compiler-rt/lib/builtins/floatdidf.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |

