Commit e9f818b2 authored by sgjesse@chromium.org's avatar sgjesse@chromium.org

Fix lint errors

TBR=erik.corry@gmail.com
Review URL: http://codereview.chromium.org/1749002

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4458 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 8ced007f
...@@ -936,9 +936,9 @@ class Assembler : public Malloced { ...@@ -936,9 +936,9 @@ class Assembler : public Malloced {
} }
private: private:
DISALLOW_IMPLICIT_CONSTRUCTORS(BlockConstPoolScope);
Assembler* assem_; Assembler* assem_;
DISALLOW_IMPLICIT_CONSTRUCTORS(BlockConstPoolScope);
}; };
// Debugging // Debugging
......
...@@ -359,7 +359,7 @@ void CodeGenerator::Generate(CompilationInfo* info) { ...@@ -359,7 +359,7 @@ void CodeGenerator::Generate(CompilationInfo* info) {
masm_->bind(&check_exit_codesize); masm_->bind(&check_exit_codesize);
#endif #endif
{ { // NOLINT
// Make sure that the constant pool is not emitted inside of the return // Make sure that the constant pool is not emitted inside of the return
// sequence. // sequence.
Assembler::BlockConstPoolScope block_const_pool(masm_); Assembler::BlockConstPoolScope block_const_pool(masm_);
......
...@@ -200,7 +200,7 @@ void FullCodeGenerator::EmitReturnSequence(int position) { ...@@ -200,7 +200,7 @@ void FullCodeGenerator::EmitReturnSequence(int position) {
masm_->bind(&check_exit_codesize); masm_->bind(&check_exit_codesize);
#endif #endif
{ { // NOLINT
// Make sure that the constant pool is not emitted inside of the return // Make sure that the constant pool is not emitted inside of the return
// sequence. // sequence.
Assembler::BlockConstPoolScope block_const_pool(masm_); Assembler::BlockConstPoolScope block_const_pool(masm_);
......
...@@ -117,7 +117,7 @@ void MacroAssembler::Call(intptr_t target, RelocInfo::Mode rmode, ...@@ -117,7 +117,7 @@ void MacroAssembler::Call(intptr_t target, RelocInfo::Mode rmode,
// ldr ip, [pc, #...] // ldr ip, [pc, #...]
// blx ip // blx ip
{ { // NOLINT
// The two instructions (ldr and blx) could be separated by a constant // The two instructions (ldr and blx) could be separated by a constant
// pool and the code would still work. The issue comes from the // pool and the code would still work. The issue comes from the
// patching code which expect the ldr to be just above the blx. // patching code which expect the ldr to be just above the blx.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment