Author: bernhard
Date: Wed Nov 26 12:16:35 2008
New Revision: 33237

Modified:
   trunk/languages/pipp/src/common/guts.pir
   trunk/languages/pipp/src/common/php_builtin.pir

Log:
[Pipp] Move pipp_defined to guts.pir


Modified: trunk/languages/pipp/src/common/guts.pir
==============================================================================
--- trunk/languages/pipp/src/common/guts.pir    (original)
+++ trunk/languages/pipp/src/common/guts.pir    Wed Nov 26 12:16:35 2008
@@ -12,6 +12,18 @@
 
 =over 4
 
+=item C<bool pipp_defined(string constant_name)>
+
+Check whether a Parrot register is defined.
+
+=cut
+
+.sub 'pipp_defined'
+    .param pmc x
+    $I0 = defined x
+    .return ($I0)
+.end
+
 =item !EXPORT(symbols, from :named('from') [, to :named('to')] )
 
 Export symbols in namespace C<from> to the namespace given by C<to>.

Modified: trunk/languages/pipp/src/common/php_builtin.pir
==============================================================================
--- trunk/languages/pipp/src/common/php_builtin.pir     (original)
+++ trunk/languages/pipp/src/common/php_builtin.pir     Wed Nov 26 12:16:35 2008
@@ -145,18 +145,6 @@
     .RETURN_BOOL($I0)
 .end
 
-=item C<bool pipp_defined(string constant_name)>
-
-Check whether a Parrot register is defined.
-
-=cut
-
-.sub 'pipp_defined'
-    .param pmc x
-    $I0 = defined x
-    .return ($I0)
-.end
-
 =item C<array each(array arr)>
 
 Return the currently pointed key..value pair in the passed array, and advance 
the pointer to the next element

Reply via email to