[svn:parrot] r39380 - trunk/runtime/parrot/languages/parrot

tene at svn.parrot.org tene at svn.parrot.org
Thu Jun 4 08:52:56 UTC 2009


Author: tene
Date: Thu Jun  4 08:52:55 2009
New Revision: 39380
URL: https://trac.parrot.org/parrot/changeset/39380

Log:
Fix an issue with PIR library exporting

Modified:
   trunk/runtime/parrot/languages/parrot/parrot.pir

Modified: trunk/runtime/parrot/languages/parrot/parrot.pir
==============================================================================
--- trunk/runtime/parrot/languages/parrot/parrot.pir	Thu Jun  4 08:43:09 2009	(r39379)
+++ trunk/runtime/parrot/languages/parrot/parrot.pir	Thu Jun  4 08:52:55 2009	(r39380)
@@ -30,7 +30,8 @@
     library['name'] = name
     library['filename'] = file
     # If this fails, we should build a hash of DEFAULT and ALL => the normal ns
-    $P0 = get_hll_global name, 'EXPORT'
+    $P0 = get_hll_namespace name
+    $P0 = $P0['EXPORT']
     library['symbols'] = $P0
     $P0 = get_hll_namespace name
     library['namespace'] = $P0


More information about the parrot-commits mailing list