diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-08 14:35:37 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-08 14:35:37 +0200 |
commit | adf922ec2800d53f5eedd469cf99c55946caeb43 (patch) | |
tree | d6b51f80928fdbf1892c3d4dbaae72fb288b88b9 /editors | |
parent | a7bb3c1396056248a71ea188f217de3f4876947e (diff) | |
download | busybox-adf922ec2800d53f5eedd469cf99c55946caeb43.tar.gz |
*: a few more NOINLINEs
function old new delta
print_linkinfo - 815 +815
do_msg - 783 +783
INET_setroute - 757 +757
varvalue - 746 +746
do_sem - 637 +637
inflate_codes - 617 +617
INET6_setroute - 491 +491
edir - 370 +370
sync_cursor - 298 +298
update_utmp - 246 +246
searchLines - 165 +165
setup_alarm - 144 +144
may_wakeup - 101 +101
getNum 566 371 -195
refresh 1166 848 -318
rtcwake_main 809 479 -330
getty_main 2396 1921 -475
chpst_main 1373 746 -627
inflate_unzip_internal 1335 567 -768
evalvar 1384 612 -772
ipaddr_list_or_flush 2160 1246 -914
route_main 1585 245 -1340
ipcs_main 2523 1049 -1474
------------------------------------------------------------------------------
(add/remove: 13/0 grow/shrink: 0/10 up/down: 6170/-7213) Total: -1043 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'editors')
-rw-r--r-- | editors/ed.c | 2 | ||||
-rw-r--r-- | editors/vi.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/editors/ed.c b/editors/ed.c index 9084a17fb..dbd802075 100644 --- a/editors/ed.c +++ b/editors/ed.c @@ -951,7 +951,7 @@ static void deleteLines(int num1, int num2) * Returns the line number which matches, or 0 if there was no match * with an error printed. */ -static int searchLines(const char *str, int num1, int num2) +static NOINLINE int searchLines(const char *str, int num1, int num2) { const LINE *lp; int len; diff --git a/editors/vi.c b/editors/vi.c index 4decbea17..a24b72303 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -1210,7 +1210,7 @@ static int next_tabstop(int col) } //----- Synchronize the cursor to Dot -------------------------- -static void sync_cursor(char *d, int *row, int *col) +static NOINLINE void sync_cursor(char *d, int *row, int *col) { char *beg_cur; // begin and end of "d" line char *tp; |