mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08:00
Work around lack of mfppr in clang
This commit is contained in:
parent
960ba7975c
commit
3372bfe221
@ -44,7 +44,12 @@ get_thread_priority (void)
|
||||
{
|
||||
/* Read the PPR. */
|
||||
ppr_t ppr;
|
||||
#if defined __clang__
|
||||
/* Temporary until clang knows about mfppr. */
|
||||
asm volatile ("mfspr %0,896" : "=r"(ppr));
|
||||
#else
|
||||
asm volatile (MFPPR" %0" : "=r"(ppr));
|
||||
#endif
|
||||
/* Return the thread priority value. */
|
||||
return EXTRACT_THREAD_PRIORITY (ppr);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user