| Index: src/ia32/code-stubs-ia32.h
|
| diff --git a/src/ia32/code-stubs-ia32.h b/src/ia32/code-stubs-ia32.h
|
| index fc813f50c1bbe650ddf3a1c50d5da8621a575ec3..c1878f0207ffa3e53749a9e8d4abd2aeaaaf3722 100644
|
| --- a/src/ia32/code-stubs-ia32.h
|
| +++ b/src/ia32/code-stubs-ia32.h
|
| @@ -301,8 +301,8 @@ class RecordWriteStub: public PlatformCodeStub {
|
| Register r2,
|
| Register r3) {
|
| for (int i = 0; i < Register::kNumRegisters; i++) {
|
| - Register candidate = Register::from_code(i);
|
| - if (candidate.IsAllocatable()) {
|
| + if (RegisterConfiguration::Crankshaft()->IsAllocatableGeneralCode(i)) {
|
| + Register candidate = Register::from_code(i);
|
| if (candidate.is(ecx)) continue;
|
| if (candidate.is(r1)) continue;
|
| if (candidate.is(r2)) continue;
|
|
|