diff options
| author | David Xu <davidxu@FreeBSD.org> | 2003-08-02 22:39:10 +0000 |
|---|---|---|
| committer | David Xu <davidxu@FreeBSD.org> | 2003-08-02 22:39:10 +0000 |
| commit | 3664d35cd5d2f4da8410fe38a9de92f8ea46be85 (patch) | |
| tree | 982fd4445b28823609e0fe87f021e53b71f47f04 /lib/libpthread | |
| parent | a9fdd3a89e147c801f46d0b197e2ff64e17479e0 (diff) | |
Notes
Diffstat (limited to 'lib/libpthread')
| -rw-r--r-- | lib/libpthread/arch/amd64/amd64/enter_uts.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpthread/arch/amd64/amd64/enter_uts.S b/lib/libpthread/arch/amd64/amd64/enter_uts.S index b5938bfaa4ba..c263eab582b6 100644 --- a/lib/libpthread/arch/amd64/amd64/enter_uts.S +++ b/lib/libpthread/arch/amd64/amd64/enter_uts.S @@ -34,7 +34,7 @@ __FBSDID("$FreeBSD$"); */ ENTRY(_amd64_enter_uts) addq %rcx, %rdx /* get stack base */ - andq $-15, %rdx /* align to 16 bytes */ + andq $~0xf, %rdx /* align to 16 bytes */ movq %rdx, %rsp /* switch to UTS stack */ movq %rdx, %rbp /* set frame */ pushq %rsi |
