mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-23 03:10:05 +00:00
Add "()" when casting to uint64_t for 64-bit store
This commit is contained in:
parent
ced6f16ee9
commit
620f3d2670
@ -1,3 +1,9 @@
|
||||
2012-09-24 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* sysdeps/x86_64/tls.h (THREAD_SETMEM): Add "()" when casting
|
||||
to uint64_t for 64-bit store.
|
||||
(THREAD_SETMEM_NC): Likewise.
|
||||
|
||||
2012-09-19 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* sysdeps/i386/tls.h (THREAD_SETMEM): Cast to uint64_t for
|
||||
|
@ -256,7 +256,7 @@ typedef struct
|
||||
abort (); \
|
||||
\
|
||||
asm volatile ("movq %q0,%%fs:%P1" : \
|
||||
: IMM_MODE ((uint64_t) value), \
|
||||
: IMM_MODE ((uint64_t) (value)), \
|
||||
"i" (offsetof (struct pthread, member))); \
|
||||
}})
|
||||
|
||||
@ -281,7 +281,7 @@ typedef struct
|
||||
abort (); \
|
||||
\
|
||||
asm volatile ("movq %q0,%%fs:%P1(,%q2,8)" : \
|
||||
: IMM_MODE ((uint64_t) value), \
|
||||
: IMM_MODE ((uint64_t) (value)), \
|
||||
"i" (offsetof (struct pthread, member[0])), \
|
||||
"r" (idx)); \
|
||||
}})
|
||||
|
Loading…
Reference in New Issue
Block a user