Explorar el Código

add ENDPROC() macro for Blackfin assembly

Mike Frysinger hace 17 años
padre
commit
bbcb6b8c7e
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      libc/sysdeps/linux/bfin/sysdep.h

+ 1 - 0
libc/sysdeps/linux/bfin/sysdep.h

@@ -14,6 +14,7 @@
 #ifdef __ASSEMBLER__
 
 #define ENTRY(sym) .global sym; .type sym, STT_FUNC; sym:
+#define ENDPROC(sym) .size sym, . - sym
 
 #endif