Index: test/cctest/compiler/graph-builder-tester.cc |
diff --git a/test/cctest/compiler/graph-builder-tester.cc b/test/cctest/compiler/graph-builder-tester.cc |
index e10c2dcf2cb07f287f0f66479deb83bc8a8d4c1f..2aaaf8927408b9b3f3103303b118b8b648ba16c3 100644 |
--- a/test/cctest/compiler/graph-builder-tester.cc |
+++ b/test/cctest/compiler/graph-builder-tester.cc |
@@ -42,10 +42,10 @@ byte* MachineCallHelper::Generate() { |
} |
-void MachineCallHelper::VerifyParameters( |
- int parameter_count, MachineRepresentation* parameter_types) { |
+void MachineCallHelper::VerifyParameters(int parameter_count, |
+ MachineType* parameter_types) { |
CHECK_EQ(this->parameter_count(), parameter_count); |
- const MachineRepresentation* expected_types = |
+ const MachineType* expected_types = |
call_descriptor_builder_->parameter_types(); |
for (int i = 0; i < parameter_count; i++) { |
CHECK_EQ(expected_types[i], parameter_types[i]); |