summaryrefslogtreecommitdiff
path: root/gcc/calls.c
diff options
context:
space:
mode:
authorschwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4>1998-04-29 01:59:28 +0000
committerschwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4>1998-04-29 01:59:28 +0000
commit97423782c26e54ddb154828989d5a479da6aa062 (patch)
tree6a7adcd1ce32bf5d33ca443319c44378c102fd1f /gcc/calls.c
parent2549a503d410039b72c21a8765c7671ad892c516 (diff)
downloadgcc-97423782c26e54ddb154828989d5a479da6aa062.tar.gz
* calls.c (expand_call): Bump the length limit on the specially
recognized function names to 17. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19488 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/calls.c')
-rw-r--r--gcc/calls.c2
1 files changed, 1 insertions, 1 deletions
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. */