mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-10 13:48:44 +00:00
Creating multiple JITs on X86 in multiple threads causes multiple writes (of
the same value) to this variable. This code could be refactored, but it doesn't matter since the old JIT is going away. Add tsan annotations to ignore the race. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145745 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -424,7 +424,9 @@ X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr) {
|
||||
|
||||
TargetJITInfo::LazyResolverFn
|
||||
X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
|
||||
TsanIgnoreWritesBegin();
|
||||
JITCompilerFunction = F;
|
||||
TsanIgnoreWritesEnd();
|
||||
|
||||
#if defined (X86_32_JIT) && !defined (_MSC_VER)
|
||||
if (Subtarget->hasSSE1())
|
||||
|
Reference in New Issue
Block a user