| Index: runtime/vm/intermediate_language.h
|
| diff --git a/runtime/vm/intermediate_language.h b/runtime/vm/intermediate_language.h
|
| index 47562644cf86a38fc8028f724c22963eeab1c574..2dd071198d99d7fbdd3b82fa62554cb83388ccbd 100644
|
| --- a/runtime/vm/intermediate_language.h
|
| +++ b/runtime/vm/intermediate_language.h
|
| @@ -5100,8 +5100,6 @@ class MathUnaryInstr : public TemplateDefinition<1, NoThrow, Pure> {
|
| public:
|
| enum MathUnaryKind {
|
| kIllegal,
|
| - kSin,
|
| - kCos,
|
| kSqrt,
|
| kDoubleSquare,
|
| };
|
| @@ -5112,7 +5110,6 @@ class MathUnaryInstr : public TemplateDefinition<1, NoThrow, Pure> {
|
|
|
| Value* value() const { return inputs_[0]; }
|
| MathUnaryKind kind() const { return kind_; }
|
| - const RuntimeEntry& TargetFunction() const;
|
|
|
| virtual bool CanDeoptimize() const { return false; }
|
|
|
| @@ -7694,7 +7691,7 @@ class MergedMathInstr : public PureDefinition {
|
| return (*inputs_)[i];
|
| }
|
|
|
| - static intptr_t OutputIndexOf(intptr_t kind);
|
| + static intptr_t OutputIndexOf(MethodRecognizer::Kind kind);
|
| static intptr_t OutputIndexOf(Token::Kind token);
|
|
|
| virtual CompileType ComputeType() const;
|
|
|