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 | 016b0e306f2357455655c7d07a03bb1e8353c71b (patch) | |
tree | f508b4b4aca95d108a6fda8f79978d692e262849 | |
parent | e60a00c0dfb05bad4912315912b70fa35050a058 (diff) |
builtins: fix guard __AEABI__ -> __ARM_EABI__
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@303207 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/builtins/floatdidf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/builtins/floatdidf.c b/lib/builtins/floatdidf.c index fccb29072..681fecef9 100644 --- a/lib/builtins/floatdidf.c +++ b/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); } |