| Index: src/x87/assembler-x87.h
|
| diff --git a/src/x87/assembler-x87.h b/src/x87/assembler-x87.h
|
| index ededc2aadc53d2fa00cab4fccad672db2647dfcf..5e067c6c121008f7fde45d508a37d84b52b148eb 100644
|
| --- a/src/x87/assembler-x87.h
|
| +++ b/src/x87/assembler-x87.h
|
| @@ -151,12 +151,18 @@ struct X87Register {
|
| return kMaxNumAllocatableRegisters;
|
| }
|
|
|
| -
|
| // TODO(turbofan): Proper support for float32.
|
| static int NumAllocatableAliasedRegisters() {
|
| return NumAllocatableRegisters();
|
| }
|
|
|
| + static int NumAllocatableRegistersForTurbo() {
|
| + return 1;
|
| + }
|
| +
|
| + static int NumAllocatableAliasedRegistersForTurbo() {
|
| + return NumAllocatableRegistersForTurbo();
|
| + }
|
|
|
| static int ToAllocationIndex(X87Register reg) {
|
| return reg.code_;
|
|
|