From 55666054857b26880955bc343790d58a1f08d375 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 29 Apr 1998 01:59:28 +0000 Subject: [PATCH] calls.c (expand_call): Bump the length limit on the specially recognized function names to 17. * calls.c (expand_call): Bump the length limit on the specially recognized function names to 17. From-SVN: r19488 --- gcc/ChangeLog | 5 +++++ gcc/calls.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2ae95fbb95a..e6a9b70e252 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Wed Apr 29 10:53:29 1998 Andreas Schwab + + * calls.c (expand_call): Bump the length limit on the specially + recognized function names to 17. + Tue Apr 28 17:53:33 1998 Jim Wilson * ginclude/stddef.h: Add check for _MACHINE_ANSI_H_ for BSD/OS diff --git a/gcc/calls.c b/gcc/calls.c index 3534bdde9db..5c34913937e 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -854,7 +854,7 @@ expand_call (exp, target, ignore) is_longjmp = 0; is_malloc = 0; - if (name != 0 && IDENTIFIER_LENGTH (DECL_NAME (fndecl)) <= 15 + if (name != 0 && IDENTIFIER_LENGTH (DECL_NAME (fndecl)) <= 17 /* Exclude functions not at the file scope, or not `extern', since they are not the magic functions we would otherwise think they are. */ -- 2.30.2