Title: [87550] trunk/Source/_javascript_Core
Revision
87550
Author
par...@webkit.org
Date
2011-05-27 13:39:28 -0700 (Fri, 27 May 2011)

Log Message

2011-05-27  Patrick Gansterer  <par...@webkit.org>

        Unreviewed. Build fix for !ENABLE(ASSEMBLER) after r87527.

        * runtime/JSGlobalData.cpp:
        (JSGlobalData::JSGlobalData):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (87549 => 87550)


--- trunk/Source/_javascript_Core/ChangeLog	2011-05-27 20:37:48 UTC (rev 87549)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-05-27 20:39:28 UTC (rev 87550)
@@ -1,3 +1,10 @@
+2011-05-27  Patrick Gansterer  <par...@webkit.org>
+
+        Unreviewed. Build fix for !ENABLE(ASSEMBLER) after r87527.
+
+        * runtime/JSGlobalData.cpp:
+        (JSGlobalData::JSGlobalData):
+
 2011-05-27  Oliver Hunt  <oli...@apple.com>
 
         Reviewed by Geoffrey Garen.

Modified: trunk/Source/_javascript_Core/runtime/JSGlobalData.cpp (87549 => 87550)


--- trunk/Source/_javascript_Core/runtime/JSGlobalData.cpp	2011-05-27 20:37:48 UTC (rev 87549)
+++ trunk/Source/_javascript_Core/runtime/JSGlobalData.cpp	2011-05-27 20:39:28 UTC (rev 87550)
@@ -178,8 +178,10 @@
     , identifierTable(globalDataType == Default ? wtfThreadData().currentIdentifierTable() : createIdentifierTable())
     , propertyNames(new CommonIdentifiers(this))
     , emptyList(new MarkedArgumentBuffer)
+#if ENABLE(ASSEMBLER)
     , executableAllocator(*this)
     , regexAllocator(*this)
+#endif
     , lexer(new Lexer(this))
     , parser(new Parser)
     , interpreter(0)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to