diff options
author | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-20 16:29:57 +0000 |
---|---|---|
committer | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-20 16:29:57 +0000 |
commit | 45959b8d815ac826ef2e1f866fe6dd73759f52c2 (patch) | |
tree | fcdef1c6f9ce38f7620276baa57a0c16917275a5 /gcc/builtins.def | |
parent | 451a290bed4a7f3059a4b7ceec15df1784bf3e7a (diff) | |
download | gcc-45959b8d815ac826ef2e1f866fe6dd73759f52c2.tar.gz |
* builtins.def (BUILT_IN_ALLOCA): Remove "#if SMALL_STACK" form.
* system.h (SMALL_STACK): Poison obsolete target macro.
* doc/tm.texi (SMALL_STACK): Remove target macro documentation.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69609 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/builtins.def')
-rw-r--r-- | gcc/builtins.def | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/builtins.def b/gcc/builtins.def index 5f814bbf9f5..0eaba889dcb 100644 --- a/gcc/builtins.def +++ b/gcc/builtins.def @@ -140,19 +140,10 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA DEF_BUILTIN (ENUM, NAME, BUILT_IN_FRONTEND, TYPE, TYPE, \ true, true, true, ATTRS, true) -/* If SMALL_STACK is defined, then `alloca' is only defined in its - `__builtin' form. */ -#if SMALL_STACK -DEF_FALLBACK_BUILTIN(BUILT_IN_ALLOCA, - "__builtin_alloca", - BT_FN_PTR_SIZE, - ATTR_MALLOC_NOTHROW_LIST) -#else DEF_EXT_LIB_BUILTIN(BUILT_IN_ALLOCA, "__builtin_alloca", BT_FN_PTR_SIZE, ATTR_MALLOC_NOTHROW_LIST) -#endif DEF_LIB_BUILTIN(BUILT_IN_ABS, "__builtin_abs", |