Add .cfi_startproc/.cfi_endproc to ENTRY/END.

Bug: 10414953
Change-Id: I711718098b9f3cc0ba8277778df64557e9c7b2a0
This commit is contained in:
Christopher Ferris
2013-11-19 13:45:27 -08:00
parent bf652a5f5c
commit 507cfe2e10
27 changed files with 27 additions and 117 deletions

View File

@@ -38,14 +38,12 @@
* ws@tools.de (Wolfgang Solfrank, TooLs GmbH) +49-228-985800
*/
#ifdef MEMCOPY
#if defined(MEMCOPY)
ENTRY(memcpy)
#else
#ifdef MEMMOVE
#elif defined(MEMMOVE)
ENTRY(memmove)
#else
ENTRY(bcopy)
#endif
#endif
pushl %esi
pushl %edi
@@ -91,3 +89,10 @@ ENTRY(bcopy)
popl %esi
cld
ret
#if defined(MEMCOPY)
END(memcpy)
#elif defined(MEMMOVE)
END(memmove)
#else
END(bcopy)
#endif