mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08:00
Cast to uint64_t for 64-bit store
This commit is contained in:
parent
63bbedd4c2
commit
ae30640a32
@ -1,3 +1,9 @@
|
||||
2012-09-19 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* sysdeps/i386/tls.h (THREAD_SETMEM): Cast to uint64_t for
|
||||
64-bit store.
|
||||
(THREAD_SETMEM_NC): Likewise.
|
||||
|
||||
2012-09-14 Jeff Law <law@redhat.com>
|
||||
|
||||
[BZ #14583]
|
||||
|
@ -343,7 +343,7 @@ union user_desc_init
|
||||
\
|
||||
asm volatile ("movl %%eax,%%gs:%P1\n\t" \
|
||||
"movl %%edx,%%gs:%P2" : \
|
||||
: "A" (value), \
|
||||
: "A" ((uint64_t) (value)), \
|
||||
"i" (offsetof (struct pthread, member)), \
|
||||
"i" (offsetof (struct pthread, member) + 4)); \
|
||||
}})
|
||||
@ -370,7 +370,7 @@ union user_desc_init
|
||||
\
|
||||
asm volatile ("movl %%eax,%%gs:%P1(,%2,8)\n\t" \
|
||||
"movl %%edx,%%gs:4+%P1(,%2,8)" : \
|
||||
: "A" (value), \
|
||||
: "A" ((uint64_t) (value)), \
|
||||
"i" (offsetof (struct pthread, member)), \
|
||||
"r" (idx)); \
|
||||
}})
|
||||
|
Loading…
x
Reference in New Issue
Block a user