From b339b1c3f99dcdd94a373ddea934444f83465807 Mon Sep 17 00:00:00 2001 From: Shu-yu Guo Date: Fri, 7 Feb 2014 14:10:02 -0800 Subject: [PATCH] Bug 967926 - Make hasUncompiledCallTarget_ Atomic to be extra careful. (r=jandem) --- js/src/jit/IonCode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/jit/IonCode.h b/js/src/jit/IonCode.h index e51780c48076..b39111b8f0ce 100644 --- a/js/src/jit/IonCode.h +++ b/js/src/jit/IonCode.h @@ -196,7 +196,7 @@ struct IonScript // Flag set when it is likely that one of our (transitive) call // targets is not compiled. Used in ForkJoin.cpp to decide when // we should add call targets to the worklist. - bool hasUncompiledCallTarget_; + mozilla::Atomic hasUncompiledCallTarget_; // Flag set if IonScript was compiled with SPS profiling enabled. bool hasSPSInstrumentation_;