Chromium Code Reviews| Index: src/compiler/typer.cc |
| diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc |
| index 37d9a94006ff7a7501fc9bb93bdd81da26215db2..9cb67d75f84a3d6cc58f09dcb97b1536c5c84b88 100644 |
| --- a/src/compiler/typer.cc |
| +++ b/src/compiler/typer.cc |
| @@ -2084,6 +2084,9 @@ Type* Typer::Visitor::TypeFloat32LessThanOrEqual(Node* node) { |
| return Type::Boolean(); |
| } |
| +Type* Typer::Visitor::TypeFloat32Max(Node* node) { return Type::Number(); } |
|
Jarin
2016/08/18 07:42:42
Is this even reachable? If not, could you just say
titzer
2016/08/18 08:23:01
If we leave it Number, it should be correct, and w
ahaas
2016/08/18 12:54:40
As discussed with jarin@ offline, I put UNREACHABL
|
| + |
| +Type* Typer::Visitor::TypeFloat32Min(Node* node) { return Type::Number(); } |
| Type* Typer::Visitor::TypeFloat64Add(Node* node) { return Type::Number(); } |