| Index: src/compiler/representation-change.h
|
| diff --git a/src/compiler/representation-change.h b/src/compiler/representation-change.h
|
| index 3c6dcbac888ddf17336ef451da1675d5b5a88ad0..3ba5b4e5cb6b670fa6a2370135f208a9d431c583 100644
|
| --- a/src/compiler/representation-change.h
|
| +++ b/src/compiler/representation-change.h
|
| @@ -53,6 +53,8 @@ class RepresentationChanger {
|
| return GetTaggedRepresentationFor(node, output_type);
|
| } else if (use_type & kRepFloat64) {
|
| return GetFloat64RepresentationFor(node, output_type);
|
| + } else if (use_type & kRepFloat32) {
|
| + return TypeError(node, output_type, use_type); // TODO(titzer): handle
|
| } else if (use_type & kRepBit) {
|
| return GetBitRepresentationFor(node, output_type);
|
| } else if (use_type & rWord) {
|
|
|