aboutsummaryrefslogtreecommitdiff
path: root/libgcc/config/avr
diff options
context:
space:
mode:
authorGeorg-Johann Lay <avr@gjlay.de>2019-12-05 09:47:35 +0000
committerGeorg-Johann Lay <gjl@gcc.gnu.org>2019-12-05 09:47:35 +0000
commit08d7ff78b3dc364d12c448521a25bc55f93e8684 (patch)
tree5bf260d3f1bc350595d3b5f349bb2c60e47b1544 /libgcc/config/avr
parenta3408fa3fbf20455eb3b17b5c78397f9d66065c7 (diff)
downloadgcc-08d7ff78b3dc364d12c448521a25bc55f93e8684.zip
gcc-08d7ff78b3dc364d12c448521a25bc55f93e8684.tar.gz
gcc-08d7ff78b3dc364d12c448521a25bc55f93e8684.tar.bz2
re PR target/92055 ([avr] Support 64-bit double)
PR target/92055 * config/avr/t-avrlibc (MULTISUBDIR): Search for double, not double64. From-SVN: r278992
Diffstat (limited to 'libgcc/config/avr')
-rw-r--r--libgcc/config/avr/t-avrlibc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgcc/config/avr/t-avrlibc b/libgcc/config/avr/t-avrlibc
index 2424d66..34eca4f 100644
--- a/libgcc/config/avr/t-avrlibc
+++ b/libgcc/config/avr/t-avrlibc
@@ -71,9 +71,9 @@ ifneq (,$(findstring avr,$(MULTISUBDIR)))
# In default dir, copying won'twork because the default multilib is
# built after all the others.
-ifneq (,$(findstring double64,$(MULTISUBDIR)))
+ifneq (,$(findstring double,$(MULTISUBDIR)))
-# We are in double64/libgcc or long-double64/libgcc:
+# We are in double{32|64}/libgcc or long-double{32|64}/libgcc:
# Just copy from the [long ]double=float multilib; we would remove any DFmode
# bits from this multilib variant, anyway, because the current assumption
# is that avr-libc hosts *all* the IEEE-double stuff.