| Index: runtime/vm/flow_graph_optimizer.h
|
| diff --git a/runtime/vm/flow_graph_optimizer.h b/runtime/vm/flow_graph_optimizer.h
|
| index 0aa0bcf9a9d4a3a3ea694f5d7a1e4055baf9581b..47f34995cd5a04fb0a4fe406384da5328398078a 100644
|
| --- a/runtime/vm/flow_graph_optimizer.h
|
| +++ b/runtime/vm/flow_graph_optimizer.h
|
| @@ -109,11 +109,11 @@ class FlowGraphOptimizer : public FlowGraphVisitor {
|
| bool TryInlineInstanceMethod(InstanceCallInstr* call);
|
| bool TryInlineFloat32x4Constructor(StaticCallInstr* call,
|
| MethodRecognizer::Kind recognized_kind);
|
| - bool TryInlineUint32x4Constructor(StaticCallInstr* call,
|
| + bool TryInlineInt32x4Constructor(StaticCallInstr* call,
|
| MethodRecognizer::Kind recognized_kind);
|
| bool TryInlineFloat32x4Method(InstanceCallInstr* call,
|
| MethodRecognizer::Kind recognized_kind);
|
| - bool TryInlineUint32x4Method(InstanceCallInstr* call,
|
| + bool TryInlineInt32x4Method(InstanceCallInstr* call,
|
| MethodRecognizer::Kind recognized_kind);
|
| void ReplaceWithInstanceOf(InstanceCallInstr* instr);
|
| void ReplaceWithTypeCast(InstanceCallInstr* instr);
|
| @@ -186,11 +186,11 @@ class FlowGraphOptimizer : public FlowGraphVisitor {
|
|
|
| bool InlineFloat32x4Getter(InstanceCallInstr* call,
|
| MethodRecognizer::Kind getter);
|
| - bool InlineUint32x4Getter(InstanceCallInstr* call,
|
| + bool InlineInt32x4Getter(InstanceCallInstr* call,
|
| MethodRecognizer::Kind getter);
|
| bool InlineFloat32x4BinaryOp(InstanceCallInstr* call,
|
| Token::Kind op_kind);
|
| - bool InlineUint32x4BinaryOp(InstanceCallInstr* call,
|
| + bool InlineInt32x4BinaryOp(InstanceCallInstr* call,
|
| Token::Kind op_kind);
|
| void InlineImplicitInstanceGetter(InstanceCallInstr* call);
|
|
|
|
|