26706
+ ��膩��� 1 /* Machine description file for ARM-based non-RISCiX machines.
+ ��膩��� 2 Copyright (C) 1994 Free Software Foundation, Inc.
+ ��膩��� 3
+ ��膩��� 4 This file is part of GNU Emacs.
+ ��膩��� 5
+ ��膩��� 6 GNU Emacs 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 2, or (at your option)
+ ��膩��� 9 any later version.
+ ��膩��� 10
+ ��膩��� 11 GNU Emacs is distributed in the hope that it will be useful,
+ ��膩��� 12 but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ��膩��� 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ ��膩��� 14 GNU General Public License for more details.
+ ��膩��� 15
+ ��膩��� 16 You should have received a copy of the GNU General Public License
+ ��膩��� 17 along with GNU Emacs; see the file COPYING. If not, write to
+ ��膩��� 18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ ��膩��� 19 Boston, MA 02111-1307, USA. */
+ ��膩��� 20
+ ��膩��� 21
+ ��膩��� 22
+ ��膩��� 23 /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word
+ ��膩��� 24 is the most significant byte. */
+ ��膩��� 25
+ ��膩��� 26 #undef WORDS_BIG_ENDIAN
+ ��膩��� 27
+ ��膩��� 28 /* Define NO_ARG_ARRAY if you cannot take the address of the first of a
+ ��膩��� 29 * group of arguments and treat it as an array of the arguments. We can't
+ ��膩��� 30 * do this on the arm with gcc, since the first 4 args are in registers. */
+ ��膩��� 31
+ ��膩��� 32 #ifdef __GNUC__
+ ��膩��� 33 #define NO_ARG_ARRAY
+ ��膩��� 34 #else
+ ��膩��� 35 #undef NO_ARG_ARRAY
+ ��膩��� 36 #endif
+ ��膩��� 37
+ ��膩��� 38 /* Define WORD_MACHINE if addresses and such have
+ ��膩��� 39 * to be corrected before they can be used as byte counts. */
+ ��膩��� 40
+ ��膩��� 41 #undef WORD_MACHINE
+ ��膩��� 42
+ ��膩��� 43 /* Define how to take a char and sign-extend into an int.
+ ��膩��� 44 On machines where char is signed, this is a no-op. */
+ ��膩��� 45
+ ��膩��� 46 #define SIGN_EXTEND_CHAR(c) (((int)(c) << 24) >> 24)
+ ��膩��� 47
+ ��膩��� 48 #define NO_UNION_TYPE
+ ��膩��� 49
+ ��膩��� 50 #ifdef __GNUC__
+ ��膩��� 51
+ ��膩��� 52 /* Use builtin alloca. Also be sure that no other ones are tried out. */
+ ��膩��� 53 #define alloca __builtin_alloca
+ ��膩��� 54 #define HAVE_ALLOCA
+ ��膩��� 55
+ ��膩��� 56 #else
+ ��膩��� 57 #define C_ALLOCA
+ ��膩��� 58 #undef HAVE_ALLOCA
+ ��膩��� 59 #endif /* __GNUC__ */
+ ��膩��� 60
+ ��膩��� 61 #define NO_REMAP
+ ��膩��� 62
+ ��膩��� 63 #define STACK_DIRECTION -1