| 573 | } |
| 574 | |
| 575 | asBYTE asCContext::GetReturnByte() |
| 576 | { |
| 577 | if( m_status != asEXECUTION_FINISHED ) return 0; |
| 578 | |
| 579 | asCDataType *dt = &m_initialFunction->returnType; |
| 580 | |
| 581 | if( dt->IsObject() || dt->IsFuncdef() || dt->IsReference() ) return 0; |
| 582 | |
| 583 | return *(asBYTE*)&m_regs.valueRegister; |
| 584 | } |
| 585 | |
| 586 | asWORD asCContext::GetReturnWord() |
| 587 | { |
no test coverage detected