| Index: test/unittests/compiler/node-test-utils.h
|
| diff --git a/test/unittests/compiler/node-test-utils.h b/test/unittests/compiler/node-test-utils.h
|
| index 91f21745d16ce941afa328eb4fc45461a4c5b401..5235d2f4acd78dba29d227adc1e8b71b593214d8 100644
|
| --- a/test/unittests/compiler/node-test-utils.h
|
| +++ b/test/unittests/compiler/node-test-utils.h
|
| @@ -99,25 +99,25 @@ Matcher<Node*> IsEffectSet(const Matcher<Node*>& effect0_matcher,
|
| const Matcher<Node*>& effect1_matcher);
|
| Matcher<Node*> IsProjection(const Matcher<size_t>& index_matcher,
|
| const Matcher<Node*>& base_matcher);
|
| -Matcher<Node*> IsCall(const Matcher<CallDescriptor*>& descriptor_matcher,
|
| +Matcher<Node*> IsCall(const Matcher<const CallDescriptor*>& descriptor_matcher,
|
| const Matcher<Node*>& value0_matcher,
|
| const Matcher<Node*>& value1_matcher,
|
| const Matcher<Node*>& effect_matcher,
|
| const Matcher<Node*>& control_matcher);
|
| -Matcher<Node*> IsCall(const Matcher<CallDescriptor*>& descriptor_matcher,
|
| +Matcher<Node*> IsCall(const Matcher<const CallDescriptor*>& descriptor_matcher,
|
| const Matcher<Node*>& value0_matcher,
|
| const Matcher<Node*>& value1_matcher,
|
| const Matcher<Node*>& value2_matcher,
|
| const Matcher<Node*>& effect_matcher,
|
| const Matcher<Node*>& control_matcher);
|
| -Matcher<Node*> IsCall(const Matcher<CallDescriptor*>& descriptor_matcher,
|
| +Matcher<Node*> IsCall(const Matcher<const CallDescriptor*>& descriptor_matcher,
|
| const Matcher<Node*>& value0_matcher,
|
| const Matcher<Node*>& value1_matcher,
|
| const Matcher<Node*>& value2_matcher,
|
| const Matcher<Node*>& value3_matcher,
|
| const Matcher<Node*>& effect_matcher,
|
| const Matcher<Node*>& control_matcher);
|
| -Matcher<Node*> IsCall(const Matcher<CallDescriptor*>& descriptor_matcher,
|
| +Matcher<Node*> IsCall(const Matcher<const CallDescriptor*>& descriptor_matcher,
|
| const Matcher<Node*>& value0_matcher,
|
| const Matcher<Node*>& value1_matcher,
|
| const Matcher<Node*>& value2_matcher,
|
| @@ -125,7 +125,7 @@ Matcher<Node*> IsCall(const Matcher<CallDescriptor*>& descriptor_matcher,
|
| const Matcher<Node*>& value4_matcher,
|
| const Matcher<Node*>& effect_matcher,
|
| const Matcher<Node*>& control_matcher);
|
| -Matcher<Node*> IsCall(const Matcher<CallDescriptor*>& descriptor_matcher,
|
| +Matcher<Node*> IsCall(const Matcher<const CallDescriptor*>& descriptor_matcher,
|
| const Matcher<Node*>& value0_matcher,
|
| const Matcher<Node*>& value1_matcher,
|
| const Matcher<Node*>& value2_matcher,
|
| @@ -135,7 +135,7 @@ Matcher<Node*> IsCall(const Matcher<CallDescriptor*>& descriptor_matcher,
|
| const Matcher<Node*>& effect_matcher,
|
| const Matcher<Node*>& control_matcher);
|
| Matcher<Node*> IsCall(
|
| - const Matcher<CallDescriptor*>& descriptor_matcher,
|
| + const Matcher<const CallDescriptor*>& descriptor_matcher,
|
| const Matcher<Node*>& value0_matcher, const Matcher<Node*>& value1_matcher,
|
| const Matcher<Node*>& value2_matcher, const Matcher<Node*>& value3_matcher,
|
| const Matcher<Node*>& value4_matcher, const Matcher<Node*>& value5_matcher,
|
|
|