| 1849 | ////////////////////////////////////////////////////////////////////////// |
| 1850 | |
| 1851 | void BeMCBlock::AddPred(BeMCBlock* pred) |
| 1852 | { |
| 1853 | if (!mPreds.Contains(pred)) |
| 1854 | { |
| 1855 | pred->mSuccs.push_back(this); |
| 1856 | mPreds.push_back(pred); |
| 1857 | } |
| 1858 | } |
| 1859 | |
| 1860 | int BeMCBlock::FindLabelInstIdx(int labelIdx) |
| 1861 | { |
no test coverage detected