| Index: src/compiler/schedule.cc
|
| diff --git a/src/compiler/schedule.cc b/src/compiler/schedule.cc
|
| index d641b4bfdb99f56313d562ead0322388f1704fb8..ac6b440d78377d1b8f49cdd496615356a98616d5 100644
|
| --- a/src/compiler/schedule.cc
|
| +++ b/src/compiler/schedule.cc
|
| @@ -18,9 +18,6 @@ BasicBlock::BasicBlock(Zone* zone, Id id)
|
| loop_header_(NULL),
|
| loop_depth_(0),
|
| loop_end_(-1),
|
| - code_start_(-1),
|
| - code_end_(-1),
|
| - deferred_(false),
|
| control_(kNone),
|
| control_input_(NULL),
|
| nodes_(zone),
|
| @@ -86,14 +83,6 @@ void BasicBlock::set_rpo_number(int32_t rpo_number) {
|
| void BasicBlock::set_loop_end(int32_t loop_end) { loop_end_ = loop_end; }
|
|
|
|
|
| -void BasicBlock::set_code_start(int32_t code_start) {
|
| - code_start_ = code_start;
|
| -}
|
| -
|
| -
|
| -void BasicBlock::set_code_end(int32_t code_end) { code_end_ = code_end; }
|
| -
|
| -
|
| void BasicBlock::set_loop_header(BasicBlock* loop_header) {
|
| loop_header_ = loop_header;
|
| }
|
|
|