Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'master' of github.com:rakudo/rakudo
  • Loading branch information
pmichaud committed May 16, 2011
2 parents 631085c + 577b759 commit ec5cdf5
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/ChangeLog
@@ -1,3 +1,11 @@
New in 2011.05 release
+ added a call counter for builtins in Perl 6-level subroutines
+ gcd (greatest common divisor) and lcm (largest common multiple) operators
+ build system improvements
+ fix relational operators when used with NaN
+ implemented Int.base
+ speedup smart-matching against numbers and Str.comb with default arguments

New in 2011.04 release
+ implemented Str.indent
+ A new, much simpler API and implemention of IO::Socket::INET
Expand Down
13 changes: 13 additions & 0 deletions tools/sublog-report.pl
Expand Up @@ -15,6 +15,19 @@
# each subroutine and the top eight callers for each:
# $ perl tools/sublog-report.pl sub.log
#
# The output is of the form
#
# <count> <routinename> (<subid>)
# <callcount> <caller> (<callersubid>)
# <callcount> <caller> (<callersubid>)
# ...
# <callcount> <routinename> (<subid>)
# ...
#
# where <count> is the number of times that <routinename>
# has been called. The indented lines list the routines
# that called it (<caller>), and how often it called them
# (<callcount>).

use warnings;
use strict;
Expand Down

0 comments on commit ec5cdf5

Please sign in to comment.