return
The return is a directive keyword used to return to the instruction point of a routine's call site. If the data returned is smaller than or equal to 128-bit, then the return value is transferred through registers. Otherwise, the memory address of a temporary return buffer allocated on the stack is passed to a return value register.
Syntax
return;
return Data;