Chromium Code Reviews| Index: src/ia32/debug-ia32.cc |
| =================================================================== |
| --- src/ia32/debug-ia32.cc (revision 10131) |
| +++ src/ia32/debug-ia32.cc (working copy) |
| @@ -258,9 +258,7 @@ |
| Label check_codesize; |
| __ bind(&check_codesize); |
| __ RecordDebugBreakSlot(); |
| - for (int i = 0; i < Assembler::kDebugBreakSlotLength; i++) { |
| - __ nop(); |
| - } |
| + __ Nop(Assembler::kDebugBreakSlotLength); |
| ASSERT_EQ(Assembler::kDebugBreakSlotLength, |
| masm->SizeOfCodeGeneratedSince(&check_codesize)); |
| } |