| 585 | } |
| 586 | |
| 587 | void BeIRCodeGen::Read(StringImpl& str) |
| 588 | { |
| 589 | BE_MEM_START; |
| 590 | int len = (int)ReadSLEB128(); |
| 591 | str.Append('?', len); |
| 592 | mStream->Read((void*)str.c_str(), len); |
| 593 | BE_MEM_END("String"); |
| 594 | } |
| 595 | |
| 596 | void BeIRCodeGen::Read(int& i) |
| 597 | { |
no test coverage detected