Revision: 4458
Author: [email protected]
Date: Wed Apr 21 03:20:55 2010
Log: Fix lint errors

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

Modified:
 /branches/bleeding_edge/src/arm/assembler-arm.h
 /branches/bleeding_edge/src/arm/codegen-arm.cc
 /branches/bleeding_edge/src/arm/full-codegen-arm.cc
 /branches/bleeding_edge/src/arm/macro-assembler-arm.cc

=======================================
--- /branches/bleeding_edge/src/arm/assembler-arm.h     Wed Apr 21 02:43:45 2010
+++ /branches/bleeding_edge/src/arm/assembler-arm.h     Wed Apr 21 03:20:55 2010
@@ -936,9 +936,9 @@
     }

    private:
-    DISALLOW_IMPLICIT_CONSTRUCTORS(BlockConstPoolScope);
-
     Assembler* assem_;
+
+    DISALLOW_IMPLICIT_CONSTRUCTORS(BlockConstPoolScope);
   };

   // Debugging
=======================================
--- /branches/bleeding_edge/src/arm/codegen-arm.cc      Wed Apr 21 02:43:45 2010
+++ /branches/bleeding_edge/src/arm/codegen-arm.cc      Wed Apr 21 03:20:55 2010
@@ -359,7 +359,7 @@
     masm_->bind(&check_exit_codesize);
 #endif

-    {
+    { // NOLINT
// Make sure that the constant pool is not emitted inside of the return
       // sequence.
       Assembler::BlockConstPoolScope block_const_pool(masm_);
=======================================
--- /branches/bleeding_edge/src/arm/full-codegen-arm.cc Wed Apr 21 02:43:45 2010 +++ /branches/bleeding_edge/src/arm/full-codegen-arm.cc Wed Apr 21 03:20:55 2010
@@ -200,7 +200,7 @@
     masm_->bind(&check_exit_codesize);
 #endif

-    {
+    { // NOLINT
// Make sure that the constant pool is not emitted inside of the return
       // sequence.
       Assembler::BlockConstPoolScope block_const_pool(masm_);
=======================================
--- /branches/bleeding_edge/src/arm/macro-assembler-arm.cc Wed Apr 21 02:43:45 2010 +++ /branches/bleeding_edge/src/arm/macro-assembler-arm.cc Wed Apr 21 03:20:55 2010
@@ -117,7 +117,7 @@
   //  ldr ip, [pc, #...]
   //  blx ip

-  {
+  { // NOLINT
     // The two instructions (ldr and blx) could be separated by a constant
     // pool and the code would still work. The issue comes from the
     // patching code which expect the ldr to be just above the blx.

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

Reply via email to