Title: [102706] trunk/Source/_javascript_Core
Revision
102706
Author
commit-qu...@webkit.org
Date
2011-12-13 14:10:05 -0800 (Tue, 13 Dec 2011)

Log Message

Fix interpreter debug build.
https://bugs.webkit.org/show_bug.cgi?id=74439

Patch by Andy Wingo <wi...@igalia.com> on 2011-12-13
Reviewed by Geoffrey Garen.

* bytecode/ValueRecovery.h: Include stdio.h on debug builds.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (102705 => 102706)


--- trunk/Source/_javascript_Core/ChangeLog	2011-12-13 22:05:00 UTC (rev 102705)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-12-13 22:10:05 UTC (rev 102706)
@@ -1,3 +1,12 @@
+2011-12-13  Andy Wingo  <wi...@igalia.com>
+
+        Fix interpreter debug build.
+        https://bugs.webkit.org/show_bug.cgi?id=74439
+
+        Reviewed by Geoffrey Garen.
+
+        * bytecode/ValueRecovery.h: Include stdio.h on debug builds.
+
 2011-12-13  Filip Pizlo  <fpi...@apple.com>
 
         DFG should know exactly why recompilation was triggered

Modified: trunk/Source/_javascript_Core/bytecode/ValueRecovery.h (102705 => 102706)


--- trunk/Source/_javascript_Core/bytecode/ValueRecovery.h	2011-12-13 22:05:00 UTC (rev 102705)
+++ trunk/Source/_javascript_Core/bytecode/ValueRecovery.h	2011-12-13 22:10:05 UTC (rev 102706)
@@ -32,6 +32,10 @@
 #include "VirtualRegister.h"
 #include <wtf/Platform.h>
 
+#ifndef NDEBUG
+#include <stdio.h>
+#endif
+
 namespace JSC {
 
 // Describes how to recover a given bytecode virtual register at a given
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to