From dd91e772430dc294e3bf478c119ef8d43c0a3358 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Mon, 12 Mar 2012 14:11:15 +0100 Subject: Imported WebKit commit 3db4eb1820ac8fb03065d7ea73a4d9db1e8fea1a (http://svn.webkit.org/repository/webkit/trunk@110422) This includes build fixes for the latest qtbase/qtdeclarative as well as the final QML2 API. --- Source/JavaScriptCore/assembler/AssemblerBuffer.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Source/JavaScriptCore/assembler/AssemblerBuffer.h') diff --git a/Source/JavaScriptCore/assembler/AssemblerBuffer.h b/Source/JavaScriptCore/assembler/AssemblerBuffer.h index 55706c1ab..d1deef234 100644 --- a/Source/JavaScriptCore/assembler/AssemblerBuffer.h +++ b/Source/JavaScriptCore/assembler/AssemblerBuffer.h @@ -28,6 +28,7 @@ #if ENABLE(ASSEMBLER) +#include "JITCompilationEffort.h" #include "JSGlobalData.h" #include "stdint.h" #include @@ -129,12 +130,12 @@ namespace JSC { return AssemblerLabel(m_index); } - PassRefPtr executableCopy(JSGlobalData& globalData, void* ownerUID) + PassRefPtr executableCopy(JSGlobalData& globalData, void* ownerUID, JITCompilationEffort effort) { if (!m_index) return 0; - RefPtr result = globalData.executableAllocator.allocate(globalData, m_index, ownerUID); + RefPtr result = globalData.executableAllocator.allocate(globalData, m_index, ownerUID, effort); if (!result) return 0; -- cgit v1.2.1