Allocate a new MachineBasicBlock. Use this instead of `new MachineBasicBlock'.
| 370 | /// Allocate a new MachineBasicBlock. Use this instead of |
| 371 | /// `new MachineBasicBlock'. |
| 372 | MachineBasicBlock * |
| 373 | MachineFunction::CreateMachineBasicBlock(const BasicBlock *bb) { |
| 374 | return new (BasicBlockRecycler.Allocate<MachineBasicBlock>(Allocator)) |
| 375 | MachineBasicBlock(*this, bb); |
| 376 | } |
| 377 | |
| 378 | /// Delete the given MachineBasicBlock. |
| 379 | void |
no outgoing calls
no test coverage detected