summaryrefslogtreecommitdiff
path: root/deps/gyp/test/rules/src/subdir4/asm-function.assem
blob: ed47cade95926f3dc2cb1a0b63e0dc390d6de39b (plain)
1
2
3
4
5
6
7
8
9
10
#if PLATFORM_WINDOWS || PLATFORM_MAC
# define IDENTIFIER(n)  _##n
#else /* Linux */
# define IDENTIFIER(n)  n
#endif

.globl IDENTIFIER(asm_function)
IDENTIFIER(asm_function):
  movl $41, %eax
  ret