| Index: src/ia32/full-codegen-ia32.cc
|
| ===================================================================
|
| --- src/ia32/full-codegen-ia32.cc (revision 6683)
|
| +++ src/ia32/full-codegen-ia32.cc (working copy)
|
| @@ -47,8 +47,7 @@
|
|
|
| class JumpPatchSite BASE_EMBEDDED {
|
| public:
|
| - explicit JumpPatchSite(MacroAssembler* masm)
|
| - : masm_(masm) {
|
| + explicit JumpPatchSite(MacroAssembler* masm) : masm_(masm) {
|
| #ifdef DEBUG
|
| info_emitted_ = false;
|
| #endif
|
| @@ -60,7 +59,7 @@
|
|
|
| void EmitJumpIfNotSmi(Register reg, NearLabel* target) {
|
| __ test(reg, Immediate(kSmiTagMask));
|
| - EmitJump(not_carry, target); // Always taken before patched.
|
| + EmitJump(not_carry, target); // Always taken before patched.
|
| }
|
|
|
| void EmitJumpIfSmi(Register reg, NearLabel* target) {
|
|
|