home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / gcc-2.3.3-src.lha / GNU / src / amiga / gcc-2.3.3 / config / xm-arm.h < prev    next >
C/C++ Source or Header  |  1994-02-06  |  2KB  |  46 lines

  1. /* Configuration for GNU C-compiler for Acorn RISC Machine.
  2.    Copyright (C) 1991 Free Software Foundation, Inc.
  3.    Contributed by Pieter `Tiggr' Schoenmakers (rcpieter@win.tue.nl)
  4.               and Martin Simmons (@harleqn.co.uk).
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. /* #defines that need visibility everywhere.  */
  23. #define FALSE 0
  24. #define TRUE 1
  25.  
  26. /* This describes the machine the compiler is hosted on.  */
  27. #define HOST_BITS_PER_CHAR 8
  28. #define HOST_BITS_PER_SHORT 16
  29. #define HOST_BITS_PER_INT 32
  30. #define HOST_BITS_PER_LONG 32
  31.  
  32. /* If compiled with GNU C, use the built-in alloca.  */
  33. #ifdef __GNUC__
  34. #define alloca __builtin_alloca
  35. #endif
  36.  
  37. /* target machine dependencies.
  38.    tm.h is a symbolic link to the actual target specific file.  */
  39. #include "tm.h"
  40.  
  41. /* Arguments to use with `exit'.  */
  42. #define SUCCESS_EXIT_CODE 0
  43. #define FATAL_EXIT_CODE 33
  44.  
  45. /* EOF xm-arm.h */
  46.