Tag functions in asm properly. Thanks to Matthias Klose for debugging the issue.

0.41
Jussi Pakkanen 8 years ago committed by Nirbheek Chauhan
parent eebaef47f0
commit 1def456fc1
  1. 3
      test cases/common/127 cpp and asm/retval-arm.S
  2. 3
      test cases/common/127 cpp and asm/retval-x86.S
  3. 3
      test cases/common/127 cpp and asm/retval-x86_64.S
  4. 3
      test cases/common/141 c cpp and asm/retval-arm.S
  5. 4
      test cases/common/141 c cpp and asm/retval-x86.S
  6. 3
      test cases/common/141 c cpp and asm/retval-x86_64.S

@ -2,6 +2,9 @@
.text
.globl SYMBOL_NAME(get_retval)
# ifdef __linux__
.type get_retval, %function
#endif
SYMBOL_NAME(get_retval):
mov r0, #0

@ -2,6 +2,9 @@
.text
.globl SYMBOL_NAME(get_retval)
# ifdef __linux__
.type get_retval, %function
#endif
SYMBOL_NAME(get_retval):
xorl %eax, %eax

@ -2,6 +2,9 @@
.text
.globl SYMBOL_NAME(get_retval)
# ifdef __linux__
.type get_retval, %function
#endif
SYMBOL_NAME(get_retval):
xorl %eax, %eax

@ -2,6 +2,9 @@
.text
.globl SYMBOL_NAME(get_retval)
# ifdef __linux__
.type get_retval, %function
#endif
SYMBOL_NAME(get_retval):
mov r0, #0

@ -2,6 +2,10 @@
.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

@ -2,6 +2,9 @@
.text
.globl SYMBOL_NAME(get_retval)
# ifdef __linux__
.type get_retval, %function
#endif
SYMBOL_NAME(get_retval):
xorl %eax, %eax

Loading…
Cancel
Save