Chromium Code Reviews| Index: src/compiler/instruction-selector-impl.h |
| diff --git a/src/compiler/instruction-selector-impl.h b/src/compiler/instruction-selector-impl.h |
| index ac446b38ed8517bec29ff735c75fe3699f14f8f7..925c9541d36ab61254616b77be57f4d82d0e5bcd 100644 |
| --- a/src/compiler/instruction-selector-impl.h |
| +++ b/src/compiler/instruction-selector-impl.h |
| @@ -201,7 +201,7 @@ class OperandGenerator { |
| return new (zone()) UnallocatedOperand(UnallocatedOperand::FIXED_SLOT, |
| location.location_); |
| } |
| - if (location.rep_ == kMachineFloat64) { |
| + if ((location.rep_ & rMask) == rFloat64) { |
|
Michael Starzinger
2014/08/13 15:40:05
nit: Can we use RepresentationOf here?
titzer
2014/08/13 16:12:58
Done.
|
| return new (zone()) UnallocatedOperand( |
| UnallocatedOperand::FIXED_DOUBLE_REGISTER, location.location_); |
| } |