Revision: 6253
Author: [email protected]
Date: Mon Jan 10 13:03:48 2011
Log: Fix presubmit error

[email protected]
Review URL: http://codereview.chromium.org/6206003
http://code.google.com/p/v8/source/detail?r=6253

Modified:
 /branches/bleeding_edge/src/safepoint-table.h

=======================================
--- /branches/bleeding_edge/src/safepoint-table.h       Mon Jan 10 11:43:38 2011
+++ /branches/bleeding_edge/src/safepoint-table.h       Mon Jan 10 13:03:48 2011
@@ -75,9 +75,9 @@
   // instructions before potentially emitting a constant pool.
   static const int kGapCodeSizeBits = 13;
   static const int kDeoptIndexBits = 32 - kGapCodeSizeBits;
- class GapCodeSizeField: public BitField<unsigned, 0, kGapCodeSizeBits> {};
+  class GapCodeSizeField: public BitField<unsigned, 0, kGapCodeSizeBits> {}
   class DeoptimizationIndexField:
-      public BitField<int, kGapCodeSizeBits, kDeoptIndexBits> {};
+      public BitField<int, kGapCodeSizeBits, kDeoptIndexBits> {}

   static bool HasRegisters(uint8_t* entry);
   static bool HasRegisterAt(uint8_t* entry, int reg_index);

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to