blob: 3cb0237640767c0dcd7d3a9b92beec83197d264b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "symbol-underscore.h"
.text
.globl SYMBOL_NAME(get_retval)
/* Only supported on Linux with GAS */
# ifdef __linux__
.type get_retval, %function
#endif
SYMBOL_NAME(get_retval):
xorl %eax, %eax
retl
|