Revision: 6254
Author: [email protected]
Date: Mon Jan 10 13:10:51 2011
Log: Fix presubmit error - really

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

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

=======================================
--- /branches/bleeding_edge/src/safepoint-table.h       Mon Jan 10 13:03:48 2011
+++ /branches/bleeding_edge/src/safepoint-table.h       Mon Jan 10 13:10:51 2011
@@ -75,9 +75,8 @@
   // 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 DeoptimizationIndexField:
-      public BitField<int, kGapCodeSizeBits, kDeoptIndexBits> {}
+ class GapCodeSizeField: public BitField<unsigned, 0, kGapCodeSizeBits> {}; + class DeoptimizationIndexField: public BitField<int, kGapCodeSizeBits, kDeoptIndexBits> {}; // NOLINT

   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