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

View File

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