diff options
author | Walter Lee <walt@tilera.com> | 2016-02-12 21:15:43 +0000 |
---|---|---|
committer | Walter Lee <walt@gcc.gnu.org> | 2016-02-12 21:15:43 +0000 |
commit | b29d9a29a109200a0e30b2f9eecc777dbc9461f5 (patch) | |
tree | 5e647eb06f13a5ca010481f8768af48a649173d5 | |
parent | 7f4cc3ced87404b10d1fa558c1937d531f7bc5fa (diff) | |
download | gcc-b29d9a29a109200a0e30b2f9eecc777dbc9461f5.zip gcc-b29d9a29a109200a0e30b2f9eecc777dbc9461f5.tar.gz gcc-b29d9a29a109200a0e30b2f9eecc777dbc9461f5.tar.bz2 |
config.host (tilegx*-*-linux*): remove ti from softfp_int_modes for 32-bit configs.
libgcc/ChangeLog:
* config.host (tilegx*-*-linux*): remove ti from
softfp_int_modes for 32-bit configs.
From-SVN: r233389
-rw-r--r-- | libgcc/ChangeLog | 5 | ||||
-rw-r--r-- | libgcc/config.host | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 14e838f..63ad30e 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,8 @@ +2016-02-12 Walter Lee <walt@tilera.com> + + * config.host (tilegx*-*-linux*): remove ti from + softfp_int_modes for 32-bit configs. + 2016-02-10 Ian Lance Taylor <iant@google.com> PR go/68562 diff --git a/libgcc/config.host b/libgcc/config.host index d8efd82..06de0de 100644 --- a/libgcc/config.host +++ b/libgcc/config.host @@ -1277,7 +1277,10 @@ tic6x-*-elf) unwind_header=config/c6x/unwind-c6x.h ;; tilegx*-*-linux*) - tmake_file="${tmake_file} tilegx/t-crtstuff t-softfp-sfdf tilegx/t-softfp t-softfp tilegx/t-tilegx" + if test "${host_address}" = 64; then + tmake_file="${tmake_file} tilegx/t-softfp" + fi + tmake_file="${tmake_file} tilegx/t-crtstuff t-softfp-sfdf t-softfp tilegx/t-tilegx" md_unwind_header=tilepro/linux-unwind.h ;; tilepro*-*-linux*) |