Skip to content

Instantly share code, notes, and snippets.

Created September 21, 2010 18:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/590171 to your computer and use it in GitHub Desktop.
Save anonymous/590171 to your computer and use it in GitHub Desktop.
pmichaud@plum:~/parrot/trunk$ diff -u fib.pir fib-pusheh.pir
--- fib.pir 2010-09-21 12:57:35.000000000 -0500
+++ fib-pusheh.pir 2010-09-21 13:07:19.000000000 -0500
@@ -78,7 +78,7 @@
.annotate 'line', 3
new $P15, 'ExceptionHandler', .CONTROL_RETURN
set_addr $P15, control_14
- push_eh $P15
+# push_eh $P15
.lex "$n", param_16
.annotate 'line', 4
find_lex $P19, "$n"
pmichaud@plum:~/parrot/trunk$ ./parrot fib.pir
fib(29) = 514229
time = 3.40501594543457
pmichaud@plum:~/parrot/trunk$ ./parrot fib-pusheh.pir
fib(29) = 514229
time = 2.84393382072449
pmichaud@plum:~/parrot/trunk$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment