commit | 6719500dbd9330d7539d2db3dcf3e8ad1858c7aa | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Wed Feb 13 15:12:32 2013 -0800 |
committer | Elliott Hughes <enh@google.com> | Wed Feb 13 15:12:32 2013 -0800 |
tree | c5ee88ca9fa2aadf63a88f2a0255ecdcee07e881 | |
parent | 2fee0340a93637507de6a860914dc3e14d44ee94 [diff] [blame] |
Add a bunch more missing ENDs to assembler routines. This isn't everything; I've missed out those x86 files that are Change-Id: Idb7bb1a68796d6c0b70ea2b5c3300e49da6c62d2
diff --git a/libc/arch-x86/bionic/_setjmp.S b/libc/arch-x86/bionic/_setjmp.S index ac62635..9221138 100644 --- a/libc/arch-x86/bionic/_setjmp.S +++ b/libc/arch-x86/bionic/_setjmp.S
@@ -54,6 +54,7 @@ movl %edi,20(%eax) xorl %eax,%eax ret +END(_setjmp) ENTRY(_longjmp) movl 4(%esp),%edx @@ -69,3 +70,4 @@ incl %eax 1: movl %ecx,0(%esp) ret +END(_longjmp)