| Index: src/jump-target.cc
|
| ===================================================================
|
| --- src/jump-target.cc (revision 1950)
|
| +++ src/jump-target.cc (working copy)
|
| @@ -28,6 +28,7 @@
|
| #include "v8.h"
|
|
|
| #include "codegen-inl.h"
|
| +#include "jump-target-inl.h"
|
| #include "register-allocator-inl.h"
|
|
|
| namespace v8 { namespace internal {
|
| @@ -165,7 +166,7 @@
|
| // elements are initially recorded as if in memory.
|
| if (target != NULL) {
|
| entry_frame_->elements_[index] = *target;
|
| - entry_frame_->InitializeEntryElement(index, target);
|
| + InitializeEntryElement(index, target);
|
| }
|
| }
|
| // Then fill in the rest of the frame with new elements.
|
| @@ -175,7 +176,7 @@
|
| entry_frame_->elements_.Add(FrameElement::MemoryElement());
|
| } else {
|
| entry_frame_->elements_.Add(*target);
|
| - entry_frame_->InitializeEntryElement(index, target);
|
| + InitializeEntryElement(index, target);
|
| }
|
| }
|
|
|
|
|