From 49994fb2ad1dbc66d69b7d5d3418ade4dde7213f Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Wed, 18 Sep 2013 18:14:04 +0200 Subject: Fix build with MingW Fix wrong export/import flags in inlined methods. Use normal GCC inline asm instead of _ReadWriteBarrier. Change-Id: Iba6b923be383777f2807d84349044dbe5a22eb57 Reviewed-by: Allan Sandfeld Jensen --- Source/JavaScriptCore/runtime/Watchdog.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/JavaScriptCore/runtime') diff --git a/Source/JavaScriptCore/runtime/Watchdog.h b/Source/JavaScriptCore/runtime/Watchdog.h index 08c0ccb95..a7b29ef7a 100644 --- a/Source/JavaScriptCore/runtime/Watchdog.h +++ b/Source/JavaScriptCore/runtime/Watchdog.h @@ -54,8 +54,8 @@ public: // This version of didFire() is a more efficient version for when we want // to know if the watchdog has fired in the past, and not whether it should // fire right now. - JS_EXPORT_PRIVATE bool didFire() { return m_didFire; } - JS_EXPORT_PRIVATE void fire(); + bool didFire() { return m_didFire; } + void fire(); void* timerDidFireAddress() { return &m_timerDidFire; } -- cgit v1.2.1