Blame libdecnumber/dconfig.h

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