diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-01-01 20:26:27 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-01-01 20:26:27 +0000 |
commit | 770526c17acd97e1e85c98bfca98d1d4b69f53f8 (patch) | |
tree | cf9680519f3303b2264ba3ac94c1cd7b69c68706 /pp.c | |
parent | 9431620da4dbda8a9753e557013462a4cc50b03f (diff) | |
download | perl-770526c17acd97e1e85c98bfca98d1d4b69f53f8.tar.gz |
strEQ/strNE of 1 character strings seems better hand inlined,
because it generates smaller object code (as well as being
faster than a true function call)
p4raw-id: //depot/perl@23725
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ /* pp.c * * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, - * 2000, 2001, 2002, 2003, 2004, by Larry Wall and others + * 2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. @@ -4550,7 +4550,7 @@ PP(pp_split) ++s; } } - else if (strEQ("^", rx->precomp)) { + else if (rx->precomp[0] == '^' && rx->precomp[1] == '\0') { while (--limit) { /*SUPPRESS 530*/ for (m = s; m < strend && *m != '\n'; m++) ; |