Index: test/cctest/test-serialize.cc |
=================================================================== |
--- test/cctest/test-serialize.cc (revision 9507) |
+++ test/cctest/test-serialize.cc (working copy) |
@@ -114,10 +114,6 @@ |
ExternalReference(isolate->counters()->keyed_load_function_prototype()); |
CHECK_EQ(make_code(STATS_COUNTER, Counters::k_keyed_load_function_prototype), |
encoder.Encode(keyed_load_function_prototype.address())); |
- ExternalReference the_hole_value_location = |
- ExternalReference::the_hole_value_location(isolate); |
- CHECK_EQ(make_code(UNCLASSIFIED, 2), |
- encoder.Encode(the_hole_value_location.address())); |
ExternalReference stack_limit_address = |
ExternalReference::address_of_stack_limit(isolate); |
CHECK_EQ(make_code(UNCLASSIFIED, 4), |
@@ -157,8 +153,6 @@ |
decoder.Decode( |
make_code(STATS_COUNTER, |
Counters::k_keyed_load_function_prototype))); |
- CHECK_EQ(ExternalReference::the_hole_value_location(isolate).address(), |
- decoder.Decode(make_code(UNCLASSIFIED, 2))); |
CHECK_EQ(ExternalReference::address_of_stack_limit(isolate).address(), |
decoder.Decode(make_code(UNCLASSIFIED, 4))); |
CHECK_EQ(ExternalReference::address_of_real_stack_limit(isolate).address(), |