diff options
author | Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> | 1998-04-29 01:59:28 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@gcc.gnu.org> | 1998-04-29 01:59:28 +0000 |
commit | 55666054857b26880955bc343790d58a1f08d375 (patch) | |
tree | 6a7adcd1ce32bf5d33ca443319c44378c102fd1f /gcc/calls.c | |
parent | 3d6bcd762c50a593f4d5e3d54d2d42dcc7bf2f94 (diff) | |
download | gcc-55666054857b26880955bc343790d58a1f08d375.zip gcc-55666054857b26880955bc343790d58a1f08d375.tar.gz gcc-55666054857b26880955bc343790d58a1f08d375.tar.bz2 |
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
Diffstat (limited to 'gcc/calls.c')
-rw-r--r-- | gcc/calls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index 3534bdd..5c34913 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. */ |