Title: [110453] trunk/Source/_javascript_Core
- Revision
- 110453
- Author
- [email protected]
- Date
- 2012-03-12 12:18:14 -0700 (Mon, 12 Mar 2012)
Log Message
Minor DataLog fixes
https://bugs.webkit.org/show_bug.cgi?id=80826
Reviewed by Andreas Kling.
* bytecode/ExecutionCounter.cpp:
Do not include DataLog.h, it is not used.
* jit/ExecutableAllocator.cpp:
Ditto.
* wtf/DataLog.cpp:
(WTF::initializeLogFileOnce):
Add missing semi-colon to the code path where DATA_LOG_FILENAME is defined.
* wtf/HashTable.cpp:
Include DataLog as it is used.
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (110452 => 110453)
--- trunk/Source/_javascript_Core/ChangeLog 2012-03-12 19:00:41 UTC (rev 110452)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-03-12 19:18:14 UTC (rev 110453)
@@ -1,3 +1,23 @@
+2012-03-12 Laszlo Gombos <[email protected]>
+
+ Minor DataLog fixes
+ https://bugs.webkit.org/show_bug.cgi?id=80826
+
+ Reviewed by Andreas Kling.
+
+ * bytecode/ExecutionCounter.cpp:
+ Do not include DataLog.h, it is not used.
+
+ * jit/ExecutableAllocator.cpp:
+ Ditto.
+
+ * wtf/DataLog.cpp:
+ (WTF::initializeLogFileOnce):
+ Add missing semi-colon to the code path where DATA_LOG_FILENAME is defined.
+
+ * wtf/HashTable.cpp:
+ Include DataLog as it is used.
+
2012-03-12 SangGyu Lee <[email protected]>
Integer overflow check code in arithmetic operation in classic interpreter
Modified: trunk/Source/_javascript_Core/bytecode/ExecutionCounter.cpp (110452 => 110453)
--- trunk/Source/_javascript_Core/bytecode/ExecutionCounter.cpp 2012-03-12 19:00:41 UTC (rev 110452)
+++ trunk/Source/_javascript_Core/bytecode/ExecutionCounter.cpp 2012-03-12 19:18:14 UTC (rev 110453)
@@ -28,7 +28,6 @@
#include "CodeBlock.h"
#include "ExecutableAllocator.h"
-#include <wtf/DataLog.h>
namespace JSC {
Modified: trunk/Source/_javascript_Core/jit/ExecutableAllocator.cpp (110452 => 110453)
--- trunk/Source/_javascript_Core/jit/ExecutableAllocator.cpp 2012-03-12 19:00:41 UTC (rev 110452)
+++ trunk/Source/_javascript_Core/jit/ExecutableAllocator.cpp 2012-03-12 19:18:14 UTC (rev 110453)
@@ -29,7 +29,6 @@
#if ENABLE(EXECUTABLE_ALLOCATOR_DEMAND)
#include "CodeProfiling.h"
-#include <wtf/DataLog.h>
#include <wtf/HashSet.h>
#include <wtf/MetaAllocator.h>
#include <wtf/PageReservation.h>
Modified: trunk/Source/_javascript_Core/wtf/DataLog.cpp (110452 => 110453)
--- trunk/Source/_javascript_Core/wtf/DataLog.cpp 2012-03-12 19:00:41 UTC (rev 110452)
+++ trunk/Source/_javascript_Core/wtf/DataLog.cpp 2012-03-12 19:18:14 UTC (rev 110453)
@@ -41,7 +41,7 @@
static void initializeLogFileOnce()
{
#ifdef DATA_LOG_FILENAME
- const char* filename = DATA_LOG_FILENAME
+ const char* filename = DATA_LOG_FILENAME;
#else
const char* filename = getenv("WTF_DATA_LOG_FILENAME");
#endif
Modified: trunk/Source/_javascript_Core/wtf/HashTable.cpp (110452 => 110453)
--- trunk/Source/_javascript_Core/wtf/HashTable.cpp 2012-03-12 19:00:41 UTC (rev 110452)
+++ trunk/Source/_javascript_Core/wtf/HashTable.cpp 2012-03-12 19:18:14 UTC (rev 110453)
@@ -19,6 +19,7 @@
#include "config.h"
#include "HashTable.h"
+#include "DataLog.h"
namespace WTF {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes