1*e054288fSIthamar R. Adema /* Copyright (C) 2001 Free Software Foundation, Inc. 2*e054288fSIthamar R. Adema This file is part of the GNU C Library. 3*e054288fSIthamar R. Adema 4*e054288fSIthamar R. Adema The GNU C Library is free software; you can redistribute it and/or 5*e054288fSIthamar R. Adema modify it under the terms of the GNU Lesser General Public 6*e054288fSIthamar R. Adema License as published by the Free Software Foundation; either 7*e054288fSIthamar R. Adema version 2.1 of the License, or (at your option) any later version. 8*e054288fSIthamar R. Adema 9*e054288fSIthamar R. Adema The GNU C Library is distributed in the hope that it will be useful, 10*e054288fSIthamar R. Adema but WITHOUT ANY WARRANTY; without even the implied warranty of 11*e054288fSIthamar R. Adema MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12*e054288fSIthamar R. Adema Lesser General Public License for more details. 13*e054288fSIthamar R. Adema 14*e054288fSIthamar R. Adema You should have received a copy of the GNU Lesser General Public 15*e054288fSIthamar R. Adema License along with the GNU C Library; if not, write to the Free 16*e054288fSIthamar R. Adema Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 17*e054288fSIthamar R. Adema 02111-1307 USA. */ 18*e054288fSIthamar R. Adema 19*e054288fSIthamar R. Adema /* This file contains a bit of information about the stack allocation 20*e054288fSIthamar R. Adema of the processor. */ 21*e054288fSIthamar R. Adema 22*e054288fSIthamar R. Adema #ifndef _STACKINFO_H 23*e054288fSIthamar R. Adema #define _STACKINFO_H 1 24*e054288fSIthamar R. Adema 25*e054288fSIthamar R. Adema /* On Arm the stack grows down. */ 26*e054288fSIthamar R. Adema #define _STACK_GROWS_DOWN 1 27*e054288fSIthamar R. Adema 28*e054288fSIthamar R. Adema #endif /* stackinfo.h */ 29