diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-01-11 16:00:02 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-01-11 16:00:02 +0000 |
commit | 2ffaa986e2d0ced70017c842f8873a335b9719df (patch) | |
tree | fc0b14abecfd0ce006d5552ab05511bd13f0a645 /src | |
parent | feb42254baab0cd0f34c8c914223b297b8b0c9cd (diff) | |
download | nginx-2ffaa986e2d0ced70017c842f8873a335b9719df.tar.gz nginx-2ffaa986e2d0ced70017c842f8873a335b9719df.zip |
use "r" instead of "q"
Diffstat (limited to 'src')
-rw-r--r-- | src/os/unix/ngx_gcc_atomic_amd64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/unix/ngx_gcc_atomic_amd64.h b/src/os/unix/ngx_gcc_atomic_amd64.h index 289cd614e..faaf7afe8 100644 --- a/src/os/unix/ngx_gcc_atomic_amd64.h +++ b/src/os/unix/ngx_gcc_atomic_amd64.h @@ -68,7 +68,7 @@ ngx_atomic_fetch_add(ngx_atomic_t *value, ngx_atomic_int_t add) NGX_SMP_LOCK " xaddq %0, %1; " - : "+q" (add) : "m" (*value) : "cc", "memory"); + : "+r" (add) : "m" (*value) : "cc", "memory"); return add; } |