[prev in list] [next in list] [prev in thread] [next in thread] 

List:       pypy-svn
Subject:    [pypy-svn] r78604 -
From:       arigo () codespeak ! net
Date:       2010-10-31 13:47:13
Message-ID: 20101031134713.0652D5080C () codespeak ! net
[Download RAW message or body]

Author: arigo
Date: Sun Oct 31 14:47:12 2010
New Revision: 78604

Modified:
   pypy/branch/jit-unroll-loops/pypy/jit/metainterp/optimizeopt/unroll.py
Log:
simplification.


Modified: pypy/branch/jit-unroll-loops/pypy/jit/metainterp/optimizeopt/unroll.py
==============================================================================
--- pypy/branch/jit-unroll-loops/pypy/jit/metainterp/optimizeopt/unroll.py	(original)
+++ pypy/branch/jit-unroll-loops/pypy/jit/metainterp/optimizeopt/unroll.py	Sun Oct 31 14:47:12 2010
@@ -116,17 +116,7 @@
     def inline_snapshot(self, snapshot):
         if snapshot in self.snapshot_map:
             return self.snapshot_map[snapshot]
-        boxes = []
-        for a in snapshot.boxes:
-            if isinstance(a, Const):
-                boxes.append(a)
-            else:
-                boxes.append(self.inline_arg(a))
-        new_snapshot = Snapshot(self.inline_snapshot(snapshot.prev), boxes[:])
+        boxes = [self.inline_arg(a) for a in snapshot.boxes]
+        new_snapshot = Snapshot(self.inline_snapshot(snapshot.prev), boxes)
         self.snapshot_map[snapshot] = new_snapshot
         return new_snapshot
-    
-
-        
-        
-        
_______________________________________________
pypy-svn mailing list
pypy-svn@codespeak.net
http://codespeak.net/mailman/listinfo/pypy-svn
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic