retval-x86.S 216 B

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