]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
calls.c (expand_call): Bump the length limit on the specially recognized function...
authorAndreas Schwab <schwab@issan.informatik.uni-dortmund.de>
Wed, 29 Apr 1998 01:59:28 +0000 (01:59 +0000)
committerAndreas Schwab <schwab@gcc.gnu.org>
Wed, 29 Apr 1998 01:59:28 +0000 (01:59 +0000)
* calls.c (expand_call): Bump the length limit on the specially
recognized function names to 17.

From-SVN: r19488

gcc/ChangeLog
gcc/calls.c

index 2ae95fbb95aa91b973af1b339d2226cc9aac0a10..e6a9b70e252dc8df96296fe2f8815dddbc3e01a0 100644 (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
index 3534bdde9dbc554dda050deab8704109308d74dd..5c34913937e96e0bb4b9cd1de75c46fd494295b6 100644 (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.  */