Index: test/cctest/test-code-stub-assembler.cc |
diff --git a/test/cctest/test-code-stub-assembler.cc b/test/cctest/test-code-stub-assembler.cc |
index 086f1580f8b59c3712feafda9a3f39d0bdba0846..588f4301315af2560cb315b3b38a6c29e9f990f8 100644 |
--- a/test/cctest/test-code-stub-assembler.cc |
+++ b/test/cctest/test-code-stub-assembler.cc |
@@ -268,7 +268,7 @@ void TestNameDictionaryLookup() { |
Label passed(&m), failed(&m); |
Label if_found(&m), if_not_found(&m); |
- Variable var_name_index(&m, MachineRepresentation::kWord32); |
+ Variable var_name_index(&m, MachineType::PointerRepresentation()); |
m.NameDictionaryLookup<Dictionary>(dictionary, unique_name, &if_found, |
&var_name_index, &if_not_found); |
@@ -374,7 +374,7 @@ void TestNumberDictionaryLookup() { |
Label passed(&m), failed(&m); |
Label if_found(&m), if_not_found(&m); |
- Variable var_entry(&m, MachineRepresentation::kWord32); |
+ Variable var_entry(&m, MachineType::PointerRepresentation()); |
m.NumberDictionaryLookup<Dictionary>(dictionary, key, &if_found, &var_entry, |
&if_not_found); |