Return the basic block that |instr| belongs to.
| 104 | private: |
| 105 | // Return the basic block that |instr| belongs to. |
| 106 | BasicBlock* GetParent(Instruction* instr) { |
| 107 | return base_->context_->get_instr_block(instr); |
| 108 | } |
| 109 | |
| 110 | // Builds a phi instruction for the basic block |bb|. The function assumes |
| 111 | // that |defining_blocks| contains the list of basic block that define the |
no test coverage detected