diff options
author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-18 10:42:16 +0000 |
---|---|---|
committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-18 10:42:16 +0000 |
commit | 4c8db992ba2e347b1c0f1284892efde6aeb0f7f5 (patch) | |
tree | f248c5e28501be330626f9ac1e598c378f83308c /gcc/calls.c | |
parent | 5b076c754173e6787fcfa7968979d866d517dc4f (diff) | |
download | gcc-4c8db992ba2e347b1c0f1284892efde6aeb0f7f5.tar.gz |
2005-03-18 Alexey Neyman <alex.neyman@auriga.ru>
Paolo Bonzini <gcc.gnu.org>
* calls.c (setjmp_call_p, special_function_p): Update comments
at the head of the functions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96656 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/calls.c')
-rw-r--r-- | gcc/calls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index 4b9e051298d..a6a071a09f8 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -463,7 +463,7 @@ emit_call_1 (rtx funexp, tree fntree, tree fndecl ATTRIBUTE_UNUSED, For example, if the function might return more than one time (setjmp), then set RETURNS_TWICE to a nonzero value. - Similarly set LONGJMP for if the function is in the longjmp family. + Similarly set NORETURN if the function is in the longjmp family. Set MAY_BE_ALLOCA for any memory allocation function that might allocate space from the stack such as alloca. */ @@ -538,7 +538,7 @@ special_function_p (tree fndecl, int flags) return flags; } -/* Return nonzero when tree represent call to longjmp. */ +/* Return nonzero when FNDECL represents a call to setjmp. */ int setjmp_call_p (tree fndecl) |