diff options
Diffstat (limited to 'lib/libpthread/arch')
-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 b5938bf..c263eab 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 |