Merge "Use ENTRY/END in ARM __get_sp."

This commit is contained in:
Elliott Hughes 2013-02-12 00:59:42 +00:00 committed by Gerrit Code Review
commit c56be54a18

View File

@ -25,10 +25,10 @@
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
.global __get_sp
.type __get_sp, %function
__get_sp: #include <machine/asm.h>
mov r0, sp
bx lr
ENTRY(__get_sp)
mov r0, sp
bx lr
END(__get_sp)