| Index: src/ia32/macro-assembler-ia32.h
|
| diff --git a/src/ia32/macro-assembler-ia32.h b/src/ia32/macro-assembler-ia32.h
|
| index 51027ea78c063652970a2936cfc90301e2c23cb3..7331ccce40c093e244c0cbe04203918e05c19cfc 100644
|
| --- a/src/ia32/macro-assembler-ia32.h
|
| +++ b/src/ia32/macro-assembler-ia32.h
|
| @@ -719,12 +719,11 @@ class MacroAssembler: public Assembler {
|
| Register length,
|
| Register scratch);
|
|
|
| - // Initialize fields with filler values. Fields starting at |start_offset|
|
| - // not including end_offset are overwritten with the value in |filler|. At
|
| - // the end the loop, |start_offset| takes the value of |end_offset|.
|
| - void InitializeFieldsWithFiller(Register start_offset,
|
| - Register end_offset,
|
| - Register filler);
|
| + // Initialize fields with filler values. Fields starting at |current_address|
|
| + // not including |end_address| are overwritten with the value in |filler|. At
|
| + // the end the loop, |current_address| takes the value of |end_address|.
|
| + void InitializeFieldsWithFiller(Register current_address,
|
| + Register end_address, Register filler);
|
|
|
| // ---------------------------------------------------------------------------
|
| // Support functions.
|
|
|