Commit b363f386 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

ntdll: Set TPIDRURW also on ARMv8-A.

parent 3c888a74
......@@ -926,7 +926,7 @@ void signal_init_thread( TEB *teb )
init_done = TRUE;
}
#ifdef __ARM_ARCH_7A__
#if defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_8A__)
/* Win32/ARM applications expect the TEB pointer to be in the TPIDRURW register. */
__asm__ __volatile__( "mcr p15, 0, %0, c13, c0, 2" : : "r" (teb) );
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment