r3900.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* Definitions of MIPS sub target machine for GNU compiler.
  2. Toshiba r3900. You should include mips.h after this.
  3. Copyright (C) 1989-2015 Free Software Foundation, Inc.
  4. Contributed by Gavin Koch (gavin@cygnus.com).
  5. This file is part of GCC.
  6. GCC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 3, or (at your option)
  9. any later version.
  10. GCC is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with GCC; see the file COPYING3. If not see
  16. <http://www.gnu.org/licenses/>. */
  17. #undef MIPS_CPU_STRING_DEFAULT
  18. #define MIPS_CPU_STRING_DEFAULT "r3900"
  19. #define MIPS_ISA_DEFAULT 1
  20. #undef MULTILIB_DEFAULTS
  21. #define MULTILIB_DEFAULTS { MULTILIB_ENDIAN_DEFAULT, "msoft-float" }
  22. /* We use the MIPS EABI by default. */
  23. #undef MIPS_ABI_DEFAULT
  24. #define MIPS_ABI_DEFAULT ABI_EABI
  25. /* By default (if not mips-something-else) produce code for the r3900 */
  26. #undef SUBTARGET_CC1_SPEC
  27. #define SUBTARGET_CC1_SPEC "\
  28. %{mhard-float:%e-mhard-float not supported} \
  29. %{msingle-float:%{msoft-float: \
  30. %e-msingle-float and -msoft-float cannot both be specified}}"