| 3759 | } |
| 3760 | |
| 3761 | BeValue* BeIRCodeGen::GetBeValue(int id) |
| 3762 | { |
| 3763 | auto& result = mResults[id]; |
| 3764 | BF_ASSERT(result.mKind == BeIRCodeGenEntryKind_Value); |
| 3765 | #ifdef BE_EXTRA_CHECKS |
| 3766 | BF_ASSERT(!result.mBeValue->mLifetimeEnded); |
| 3767 | BF_ASSERT(!result.mBeValue->mWasRemoved); |
| 3768 | #endif |
| 3769 | return result.mBeValue; |
| 3770 | } |
| 3771 | |
| 3772 | BeType* BeIRCodeGen::GetBeType(int id) |
| 3773 | { |
no outgoing calls
no test coverage detected