Fix build for ARM in release mode after r10531.

TBR=erik.corry@gmail.com

Review URL: https://chromiumcodereview.appspot.com/9225022

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@10534 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent e3f2cc29
......@@ -5130,13 +5130,12 @@ static void GenerateRecordCallTarget(MacroAssembler* masm) {
// megamorphic.
// r1 : the function to call
// r2 : cache cell for call target
Isolate* isolate = masm->isolate();
Label done;
ASSERT_EQ(*TypeFeedbackCells::MegamorphicSentinel(isolate),
isolate->heap()->undefined_value());
ASSERT_EQ(*TypeFeedbackCells::UninitializedSentinel(isolate),
isolate->heap()->the_hole_value());
ASSERT_EQ(*TypeFeedbackCells::MegamorphicSentinel(masm->isolate()),
masm->isolate()->heap()->undefined_value());
ASSERT_EQ(*TypeFeedbackCells::UninitializedSentinel(masm->isolate()),
masm->isolate()->heap()->the_hole_value());
// Load the cache state into r3.
__ ldr(r3, FieldMemOperand(r2, JSGlobalPropertyCell::kValueOffset));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment