[svn:parrot] r38410 - branches/pmc_pct/compilers/pmc/src

bacek at svn.parrot.org bacek at svn.parrot.org
Wed Apr 29 22:07:37 UTC 2009


Author: bacek
Date: Wed Apr 29 22:07:36 2009
New Revision: 38410
URL: https://trac.parrot.org/parrot/changeset/38410

Log:
Simplify 'uc'. Coke++

Modified:
   branches/pmc_pct/compilers/pmc/src/builtins.pir

Modified: branches/pmc_pct/compilers/pmc/src/builtins.pir
==============================================================================
--- branches/pmc_pct/compilers/pmc/src/builtins.pir	Wed Apr 29 19:35:20 2009	(r38409)
+++ branches/pmc_pct/compilers/pmc/src/builtins.pir	Wed Apr 29 22:07:36 2009	(r38410)
@@ -9,9 +9,8 @@
 .namespace []
 
 .sub 'uc'
-    .param pmc arg
-    $S0 = arg
-    $S0 = upcase $S0
+    .param string arg
+    $S0 = upcase arg
     .return ($S0)
 .end
 


More information about the parrot-commits mailing list