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
This commit is contained in:
Andreas Schwab 1998-04-29 01:59:28 +00:00 committed by Andreas Schwab
parent 3d6bcd762c
commit 5566605485
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Wed Apr 29 10:53:29 1998 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* 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 <wilson@cygnus.com>
* ginclude/stddef.h: Add check for _MACHINE_ANSI_H_ for BSD/OS

View File

@ -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. */