Title: [159937] trunk/Source/_javascript_Core
Revision
159937
Author
commit-qu...@webkit.org
Date
2013-12-02 09:14:37 -0800 (Mon, 02 Dec 2013)

Log Message

Remove stdio.h from JSC files.
https://bugs.webkit.org/show_bug.cgi?id=125066

Patch by László Langó <la...@inf.u-szeged.hu> on 2013-12-02
Reviewed by Michael Saboff.

Remove stdio.h, when it is not necessary to be included.

* bytecode/CodeBlock.cpp:
* bytecode/StructureSet.h:
* profiler/LegacyProfiler.cpp:
* profiler/Profile.cpp:
* profiler/ProfileNode.cpp:
* yarr/YarrInterpreter.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (159936 => 159937)


--- trunk/Source/_javascript_Core/ChangeLog	2013-12-02 16:51:07 UTC (rev 159936)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-12-02 17:14:37 UTC (rev 159937)
@@ -1,5 +1,21 @@
 2013-12-02  László Langó  <la...@inf.u-szeged.hu>
 
+        Remove stdio.h from JSC files.
+        https://bugs.webkit.org/show_bug.cgi?id=125066
+
+        Reviewed by Michael Saboff.
+
+        Remove stdio.h, when it is not necessary to be included.
+
+        * bytecode/CodeBlock.cpp:
+        * bytecode/StructureSet.h:
+        * profiler/LegacyProfiler.cpp:
+        * profiler/Profile.cpp:
+        * profiler/ProfileNode.cpp:
+        * yarr/YarrInterpreter.cpp:
+
+2013-12-02  László Langó  <la...@inf.u-szeged.hu>
+
         Unused include files when building without JIT.
         https://bugs.webkit.org/show_bug.cgi?id=125062
 

Modified: trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp (159936 => 159937)


--- trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp	2013-12-02 16:51:07 UTC (rev 159936)
+++ trunk/Source/_javascript_Core/bytecode/CodeBlock.cpp	2013-12-02 17:14:37 UTC (rev 159937)
@@ -53,7 +53,6 @@
 #include "Repatch.h"
 #include "RepatchBuffer.h"
 #include "SlotVisitorInlines.h"
-#include <stdio.h>
 #include <wtf/BagToHashMap.h>
 #include <wtf/CommaPrinter.h>
 #include <wtf/StringExtras.h>

Modified: trunk/Source/_javascript_Core/bytecode/StructureSet.h (159936 => 159937)


--- trunk/Source/_javascript_Core/bytecode/StructureSet.h	2013-12-02 16:51:07 UTC (rev 159936)
+++ trunk/Source/_javascript_Core/bytecode/StructureSet.h	2013-12-02 17:14:37 UTC (rev 159937)
@@ -30,7 +30,6 @@
 #include "SpeculatedType.h"
 #include "Structure.h"
 #include "DumpContext.h"
-#include <stdio.h>
 #include <wtf/CommaPrinter.h>
 #include <wtf/Vector.h>
 

Modified: trunk/Source/_javascript_Core/profiler/LegacyProfiler.cpp (159936 => 159937)


--- trunk/Source/_javascript_Core/profiler/LegacyProfiler.cpp	2013-12-02 16:51:07 UTC (rev 159936)
+++ trunk/Source/_javascript_Core/profiler/LegacyProfiler.cpp	2013-12-02 17:14:37 UTC (rev 159937)
@@ -40,7 +40,6 @@
 #include "Profile.h"
 #include "ProfileGenerator.h"
 #include "ProfileNode.h"
-#include <stdio.h>
 
 namespace JSC {
 

Modified: trunk/Source/_javascript_Core/profiler/Profile.cpp (159936 => 159937)


--- trunk/Source/_javascript_Core/profiler/Profile.cpp	2013-12-02 16:51:07 UTC (rev 159936)
+++ trunk/Source/_javascript_Core/profiler/Profile.cpp	2013-12-02 17:14:37 UTC (rev 159937)
@@ -27,7 +27,6 @@
 #include "Profile.h"
 
 #include "ProfileNode.h"
-#include <stdio.h>
 #include <wtf/DataLog.h>
 
 namespace JSC {

Modified: trunk/Source/_javascript_Core/profiler/ProfileNode.cpp (159936 => 159937)


--- trunk/Source/_javascript_Core/profiler/ProfileNode.cpp	2013-12-02 16:51:07 UTC (rev 159936)
+++ trunk/Source/_javascript_Core/profiler/ProfileNode.cpp	2013-12-02 17:14:37 UTC (rev 159937)
@@ -30,7 +30,6 @@
 #include "ProfileNode.h"
 
 #include "LegacyProfiler.h"
-#include <stdio.h>
 #include <wtf/DateMath.h>
 #include <wtf/DataLog.h>
 #include <wtf/text/StringHash.h>

Modified: trunk/Source/_javascript_Core/yarr/YarrInterpreter.cpp (159936 => 159937)


--- trunk/Source/_javascript_Core/yarr/YarrInterpreter.cpp	2013-12-02 16:51:07 UTC (rev 159936)
+++ trunk/Source/_javascript_Core/yarr/YarrInterpreter.cpp	2013-12-02 17:14:37 UTC (rev 159937)
@@ -34,10 +34,6 @@
 #include <wtf/text/CString.h>
 #include <wtf/text/WTFString.h>
 
-#ifndef NDEBUG
-#include <stdio.h>
-#endif
-
 using namespace WTF;
 
 namespace JSC { namespace Yarr {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to