| Index: src/compiler/typer.cc
|
| diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
|
| index 0f6f55a80176f179551630f898eff3a84c7e3ec4..49855367b02feddaabcb459bbd1cfad8062de0d2 100644
|
| --- a/src/compiler/typer.cc
|
| +++ b/src/compiler/typer.cc
|
| @@ -2119,6 +2119,13 @@ Type* Typer::Visitor::TypeWord32ReverseBits(Node* node) {
|
| return Type::Integral32();
|
| }
|
|
|
| +Type* Typer::Visitor::TypeWord16ReverseBytes(Node* node) {
|
| + return Type::Integral32();
|
| +}
|
| +
|
| +Type* Typer::Visitor::TypeWord32ReverseBytes(Node* node) {
|
| + return Type::Integral32();
|
| +}
|
|
|
| Type* Typer::Visitor::TypeWord32Popcnt(Node* node) {
|
| return Type::Integral32();
|
| @@ -2156,6 +2163,9 @@ Type* Typer::Visitor::TypeWord64ReverseBits(Node* node) {
|
| return Type::Internal();
|
| }
|
|
|
| +Type* Typer::Visitor::TypeWord64ReverseBytes(Node* node) {
|
| + return Type::Internal();
|
| +}
|
|
|
| Type* Typer::Visitor::TypeWord64Popcnt(Node* node) { return Type::Internal(); }
|
|
|
|
|