| Index: src/compiler/node-matchers.h
|
| diff --git a/src/compiler/node-matchers.h b/src/compiler/node-matchers.h
|
| index d73a9268b65c23f9c5d788bfea381d0ff64bdf0e..e62eaeea8e678368a4ff451dbbb53d6f2f6722e8 100644
|
| --- a/src/compiler/node-matchers.h
|
| +++ b/src/compiler/node-matchers.h
|
| @@ -90,6 +90,7 @@ struct FloatMatcher FINAL : public ValueMatcher<T, kOpcode> {
|
| bool IsNaN() const { return this->HasValue() && std::isnan(this->Value()); }
|
| };
|
|
|
| +typedef FloatMatcher<float, IrOpcode::kFloat32Constant> Float32Matcher;
|
| typedef FloatMatcher<double, IrOpcode::kFloat64Constant> Float64Matcher;
|
| typedef FloatMatcher<double, IrOpcode::kNumberConstant> NumberMatcher;
|
|
|
|
|