<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1415,7 +1415,11 @@ class Array
   # Goes through the Array back to front and yields
   # each element to the supplied block. Returns self.
   def reverse_each()
-    (@total - 1).downto(0) { |i| yield(at(i)) }
+    i = @total - 1
+    while i &gt;= 0 do
+      yield(at(i))
+      i -= 1
+    end
     self
   end
 </diff>
      <filename>kernel/common/array.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>0882f311311887ca92f88fa7eb82be1b6a83c0a8</id>
    </parent>
  </parents>
  <author>
    <name>Charles Comstock</name>
    <email>dgtized@gmail.com</email>
  </author>
  <url>http://github.com/evanphx/rubinius/commit/17c810997caa5d027ccb2402271d5ef9a1ea18d6</url>
  <id>17c810997caa5d027ccb2402271d5ef9a1ea18d6</id>
  <committed-date>2008-11-03T15:15:54-08:00</committed-date>
  <authored-date>2008-10-30T11:23:41-07:00</authored-date>
  <message>optimized Array#reverse_each for ~2x speedup</message>
  <tree>9ee1974a4aa62ae4c718326690b4d238146c54ee</tree>
  <committer>
    <name>Charles Comstock</name>
    <email>dgtized@gmail.com</email>
  </committer>
</commit>
