Version 1.6.0-dev.5.1

svn merge -c 38568 https://dart.googlecode.com/svn/branches/bleeding_edge trunk

git-svn-id: http://dart.googlecode.com/svn/trunk@38569 260f80e4-7a28-3924-810f-c04153c831b5
diff --git a/runtime/lib/mirrors_impl.dart b/runtime/lib/mirrors_impl.dart
index 13bb7a9..89b7f05 100644
--- a/runtime/lib/mirrors_impl.dart
+++ b/runtime/lib/mirrors_impl.dart
@@ -299,10 +299,10 @@
     return identityHashCode(_reflectee) ^ 0x36363636;
   }
 
-  static var _getFieldClosures = new LRUMap.withShift(7);
-  static var _setFieldClosures = new LRUMap.withShift(7);
-  static var _getFieldCallCounts = new LRUMap.withShift(8);
-  static var _setFieldCallCounts = new LRUMap.withShift(8);
+  static var _getFieldClosures = new LRUMap.withShift(9);
+  static var _setFieldClosures = new LRUMap.withShift(9);
+  static var _getFieldCallCounts = new LRUMap.withShift(10);
+  static var _setFieldCallCounts = new LRUMap.withShift(10);
   static const _closureThreshold = 20;
 
   _getFieldSlow(unwrapped) {
diff --git a/tools/VERSION b/tools/VERSION
index e468720..9934d77 100644
--- a/tools/VERSION
+++ b/tools/VERSION
@@ -28,4 +28,4 @@
 MINOR 6
 PATCH 0
 PRERELEASE 5
-PRERELEASE_PATCH 0
+PRERELEASE_PATCH 1