Title: [104429] trunk/Source/_javascript_Core
- Revision
- 104429
- Author
- [email protected]
- Date
- 2012-01-08 20:27:01 -0800 (Sun, 08 Jan 2012)
Log Message
WinCE build fix after r104415.
* jit/JITExceptions.cpp:
* jit/JITExceptions.h:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (104428 => 104429)
--- trunk/Source/_javascript_Core/ChangeLog 2012-01-09 02:57:57 UTC (rev 104428)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-01-09 04:27:01 UTC (rev 104429)
@@ -1,3 +1,10 @@
+2012-01-08 Ryosuke Niwa <[email protected]>
+
+ WinCE build fix after r104415.
+
+ * jit/JITExceptions.cpp:
+ * jit/JITExceptions.h:
+
2012-01-08 Filip Pizlo <[email protected]>
The JIT's protocol for exception handling should be available to other parts of the system
Modified: trunk/Source/_javascript_Core/jit/JITExceptions.cpp (104428 => 104429)
--- trunk/Source/_javascript_Core/jit/JITExceptions.cpp 2012-01-09 02:57:57 UTC (rev 104428)
+++ trunk/Source/_javascript_Core/jit/JITExceptions.cpp 2012-01-09 04:27:01 UTC (rev 104429)
@@ -32,6 +32,8 @@
#include "JSGlobalData.h"
#include "JSValue.h"
+#if ENABLE(ASSEMBLER)
+
namespace JSC {
ExceptionHandler genericThrow(JSGlobalData* globalData, ExecState* callFrame, JSValue exceptionValue, unsigned vPCIndex)
@@ -67,3 +69,4 @@
}
+#endif
Modified: trunk/Source/_javascript_Core/jit/JITExceptions.h (104428 => 104429)
--- trunk/Source/_javascript_Core/jit/JITExceptions.h 2012-01-09 02:57:57 UTC (rev 104428)
+++ trunk/Source/_javascript_Core/jit/JITExceptions.h 2012-01-09 04:27:01 UTC (rev 104429)
@@ -29,6 +29,8 @@
#include "JSValue.h"
#include "MacroAssemblerCodeRef.h"
+#if ENABLE(ASSEMBLER)
+
namespace JSC {
class ExecState;
@@ -48,5 +50,7 @@
} // namespace JSC
+#endif
+
#endif // JITExceptions_h
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes