| Index: src/compiler/representation-change.cc
|
| diff --git a/src/compiler/representation-change.cc b/src/compiler/representation-change.cc
|
| index ba75a3388fcde46c80ce77cd22feefb2d31ff234..c8a00338e2440b3ed6861dbfecddff788921e627 100644
|
| --- a/src/compiler/representation-change.cc
|
| +++ b/src/compiler/representation-change.cc
|
| @@ -340,6 +340,8 @@ Node* RepresentationChanger::GetFloat64RepresentationFor(
|
| // low 32 bits (so we can pick uint32 safely).
|
| op = machine()->ChangeUint32ToFloat64();
|
| }
|
| + } else if (output_rep == MachineRepresentation::kBit) {
|
| + op = machine()->ChangeUint32ToFloat64();
|
| } else if (output_rep == MachineRepresentation::kTagged) {
|
| if (output_type->Is(Type::Undefined())) {
|
| return jsgraph()->Float64Constant(
|
|
|