2017-03-27 17:10:34 +08:00
|
|
|
#include "symbol-underscore.h"
|
|
|
|
|
|
|
|
.text
|
|
|
|
.globl SYMBOL_NAME(get_retval)
|
2017-06-21 22:08:28 +08:00
|
|
|
/* Only supported on Linux with GAS */
|
|
|
|
# ifdef __linux__
|
|
|
|
.type get_retval, %function
|
|
|
|
#endif
|
2017-03-27 17:10:34 +08:00
|
|
|
|
|
|
|
SYMBOL_NAME(get_retval):
|
2017-06-21 22:08:28 +08:00
|
|
|
xorl %eax, %eax
|
|
|
|
retl
|