diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-11-04 20:27:47 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-11-04 20:27:47 +0000 |
commit | cff029c298d255bbc70c1136914a13261eac9568 (patch) | |
tree | d28af119461b7cbad703580e12d04f6b630c6942 /libc/sysdeps/linux/sh/__longjmp.S | |
parent | 578a13e90fe4ca11ee9bc4e484c20248badb1b32 (diff) | |
download | uClibc-alpine-cff029c298d255bbc70c1136914a13261eac9568.tar.bz2 uClibc-alpine-cff029c298d255bbc70c1136914a13261eac9568.tar.xz |
I dunno why there were align 5, but align 4 is much more sensible.
Diffstat (limited to 'libc/sysdeps/linux/sh/__longjmp.S')
-rw-r--r-- | libc/sysdeps/linux/sh/__longjmp.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/sh/__longjmp.S b/libc/sysdeps/linux/sh/__longjmp.S index 9b785a300..163801969 100644 --- a/libc/sysdeps/linux/sh/__longjmp.S +++ b/libc/sysdeps/linux/sh/__longjmp.S @@ -24,7 +24,7 @@ /* __longjmp(jmpbuf, val) */ .text -.align 5 +.align 4 .type __longjmp,@function .globl __longjmp; __longjmp: |