1132718Skan/* Support for GCC using WindISS simulator.
2132718Skan   Copyright (C) 2003 Free Software Foundation, Inc.
3132718Skan   Contributed by CodeSourcery, LLC.
4132718Skan
5132718SkanThis file is part of GCC.
6132718Skan
7132718SkanGCC is free software; you can redistribute it and/or modify
8132718Skanit under the terms of the GNU General Public License as published by
9132718Skanthe Free Software Foundation; either version 2, or (at your option)
10132718Skanany later version.
11132718Skan
12132718SkanGCC is distributed in the hope that it will be useful,
13132718Skanbut WITHOUT ANY WARRANTY; without even the implied warranty of
14132718SkanMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15132718SkanGNU General Public License for more details.
16132718Skan
17132718SkanYou should have received a copy of the GNU General Public License
18132718Skanalong with GCC; see the file COPYING.  If not, write to
19169689Skanthe Free Software Foundation, 51 Franklin Street, Fifth Floor,
20169689SkanBoston, MA 02110-1301, USA.  */
21132718Skan
22132718Skan
23132718Skan/* windiss uses wchar_t == unsigned short (UCS2) on all architectures.  */
24132718Skan#undef WCHAR_TYPE
25132718Skan#define WCHAR_TYPE "short unsigned int"
26132718Skan#undef WCHAR_TYPE_SIZE
27132718Skan#define WCHAR_TYPE_SIZE 16
28132718Skan
29132718Skan/* windiss has wint_t == int */
30132718Skan#undef WINT_TYPE
31132718Skan#define WINT_TYPE "int"
32132718Skan
33132718Skan/* No profiling.  */
34132718Skan#undef  FUNCTION_PROFILER
35132718Skan#define FUNCTION_PROFILER(FILE, LABELNO)     \
36132718Skan{                                            \
37132718Skan  sorry ("profiler support for WindISS");    \
38132718Skan}
39