dconfig.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* Configure decNumber for either host or target.
  2. Copyright (C) 2008-2022 Free Software Foundation, Inc.
  3. This file is part of GCC.
  4. GCC is free software; you can redistribute it and/or modify it under
  5. the terms of the GNU General Public License as published by the Free
  6. Software Foundation; either version 3, or (at your option) any later
  7. version.
  8. GCC is distributed in the hope that it will be useful, but WITHOUT ANY
  9. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  11. for more details.
  12. Under Section 7 of GPL version 3, you are granted additional
  13. permissions described in the GCC Runtime Library Exception, version
  14. 3.1, as published by the Free Software Foundation.
  15. You should have received a copy of the GNU General Public License and
  16. a copy of the GCC Runtime Library Exception along with this program;
  17. see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  18. <http://www.gnu.org/licenses/>. */
  19. #ifdef IN_LIBGCC2
  20. #include "tconfig.h"
  21. #include "coretypes.h"
  22. #include "tm.h"
  23. #if __FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__
  24. #define WORDS_BIGENDIAN 1
  25. #endif
  26. #else
  27. #include "config.h"
  28. #endif