Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/external/bsd/compiler_rt/dist/lib/builtins PR port-arm/5...
details: https://anonhg.NetBSD.org/src/rev/fbbe43f4fb16
branches: trunk
changeset: 379727:fbbe43f4fb16
user: rin <rin%NetBSD.org@localhost>
date: Wed Jun 16 05:07:18 2021 +0000
description:
PR port-arm/55897
Cherry-pick upstream commit llvm-svn: 303207:
https://github.com/llvm/llvm-project/commit/4a45838d10085defac0f3b3003a5263e34536f3b#diff-549f1733063df365663fe375f336034e33e16d6bf2826cd4f966045aeb136007
----
[PATCH] builtins: fix guard __AEABI__ -> __ARM_EABI__
llvm-svn: 303207
diffstat:
sys/external/bsd/compiler_rt/dist/lib/builtins/floatdidf.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 52c43ed33dd0 -r fbbe43f4fb16 sys/external/bsd/compiler_rt/dist/lib/builtins/floatdidf.c
--- a/sys/external/bsd/compiler_rt/dist/lib/builtins/floatdidf.c Wed Jun 16 05:06:45 2021 +0000
+++ b/sys/external/bsd/compiler_rt/dist/lib/builtins/floatdidf.c Wed Jun 16 05:07:18 2021 +0000
@@ -104,7 +104,7 @@ COMPILER_RT_ABI double
}
#endif
-#if defined(__AEABI__)
+#if defined(__ARM_EABI__)
AEABI_RTABI double __aeabi_l2d(di_int a) {
return __floatdidf(a);
}
Home |
Main Index |
Thread Index |
Old Index