Chromium Code Reviews| Index: src/x64/debug-x64.cc |
| =================================================================== |
| --- src/x64/debug-x64.cc (revision 10142) |
| +++ src/x64/debug-x64.cc (working copy) |
| @@ -264,9 +264,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)); |
| } |