diff options
Diffstat (limited to 'compiler/dex/mir_graph.h')
| -rw-r--r-- | compiler/dex/mir_graph.h | 9 | 
1 files changed, 0 insertions, 9 deletions
diff --git a/compiler/dex/mir_graph.h b/compiler/dex/mir_graph.h index bffec394d6..f9980056b8 100644 --- a/compiler/dex/mir_graph.h +++ b/compiler/dex/mir_graph.h @@ -577,14 +577,6 @@ class MIRGraph {      return reg_location_[method_sreg_];    } -  bool IsSpecialCase() { -    return special_case_ != kNoHandler; -  } - -  SpecialCaseHandler GetSpecialCase() { -    return special_case_; -  } -    bool IsBackedge(BasicBlock* branch_bb, BasicBlockId target_bb_id) {      return ((target_bb_id != NullBasicBlockId) &&              (GetBasicBlock(target_bb_id)->start_offset <= branch_bb->start_offset)); @@ -789,7 +781,6 @@ class MIRGraph {    int method_sreg_;    unsigned int attributes_;    Checkstats* checkstats_; -  SpecialCaseHandler special_case_;    ArenaAllocator* arena_;    int backward_branches_;    int forward_branches_;  |