diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-10-01 15:00:21 +0000 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-10-01 15:00:21 +0000 |
| commit | ad9bbe98548646c8870645d70bf788baa4039230 (patch) | |
| tree | e1bec97a8636fec88732ef222c2e21d2a73831cd /lib/libc/powerpc64/gen | |
| parent | 31f0d081d8bb499cd7beab872694ca4b3ebd9cf0 (diff) | |
Notes
Diffstat (limited to 'lib/libc/powerpc64/gen')
| -rw-r--r-- | lib/libc/powerpc64/gen/_ctx_start.S | 1 | ||||
| -rw-r--r-- | lib/libc/powerpc64/gen/_setjmp.S | 2 | ||||
| -rw-r--r-- | lib/libc/powerpc64/gen/fabs.S | 1 | ||||
| -rw-r--r-- | lib/libc/powerpc64/gen/setjmp.S | 2 | ||||
| -rw-r--r-- | lib/libc/powerpc64/gen/sigsetjmp.S | 2 |
5 files changed, 8 insertions, 0 deletions
diff --git a/lib/libc/powerpc64/gen/_ctx_start.S b/lib/libc/powerpc64/gen/_ctx_start.S index 79df0413d2e80..17ec44e739cd0 100644 --- a/lib/libc/powerpc64/gen/_ctx_start.S +++ b/lib/libc/powerpc64/gen/_ctx_start.S @@ -46,5 +46,6 @@ nop bl CNAME(abort) /* abort */ nop + END(_ctx_start) .section .note.GNU-stack,"",%progbits diff --git a/lib/libc/powerpc64/gen/_setjmp.S b/lib/libc/powerpc64/gen/_setjmp.S index ac0555e28850e..207c4f7d10d9d 100644 --- a/lib/libc/powerpc64/gen/_setjmp.S +++ b/lib/libc/powerpc64/gen/_setjmp.S @@ -80,6 +80,7 @@ ENTRY(_setjmp) std %r31,40 + 22*8(%r3) li %r3,0 blr +END(_setjmp) ENTRY(_longjmp) ld %r9,40 + 0*8(%r3) @@ -113,5 +114,6 @@ ENTRY(_longjmp) bnelr li %r3,1 blr +END(_longjmp) .section .note.GNU-stack,"",%progbits diff --git a/lib/libc/powerpc64/gen/fabs.S b/lib/libc/powerpc64/gen/fabs.S index 7891012e281c8..ac083ae636ac9 100644 --- a/lib/libc/powerpc64/gen/fabs.S +++ b/lib/libc/powerpc64/gen/fabs.S @@ -33,5 +33,6 @@ __FBSDID("$FreeBSD$"); ENTRY(fabs) fabs %f1,%f1 blr +END(fabs) .section .note.GNU-stack,"",%progbits diff --git a/lib/libc/powerpc64/gen/setjmp.S b/lib/libc/powerpc64/gen/setjmp.S index 8fe285201dc2c..14954667b9b49 100644 --- a/lib/libc/powerpc64/gen/setjmp.S +++ b/lib/libc/powerpc64/gen/setjmp.S @@ -92,6 +92,7 @@ ENTRY(setjmp) li %r3,0 /* return (0) */ blr +END(setjmp) WEAK_REFERENCE(__longjmp, longjmp) ENTRY(__longjmp) @@ -132,5 +133,6 @@ ENTRY(__longjmp) bnelr li %r3,1 blr +END(__longjmp) .section .note.GNU-stack,"",%progbits diff --git a/lib/libc/powerpc64/gen/sigsetjmp.S b/lib/libc/powerpc64/gen/sigsetjmp.S index d5341eaf47b95..5cfd684d38dae 100644 --- a/lib/libc/powerpc64/gen/sigsetjmp.S +++ b/lib/libc/powerpc64/gen/sigsetjmp.S @@ -97,6 +97,7 @@ ENTRY(sigsetjmp) li %r3,0 blr +END(sigsetjmp) ENTRY(siglongjmp) ld %r9,40 + 0*8(%r3) @@ -141,5 +142,6 @@ ENTRY(siglongjmp) bnelr li %r3,1 blr +END(siglongjmp) .section .note.GNU-stack,"",%progbits |
