Title: [208463] trunk/Source/_javascript_Core
- Revision
- 208463
- Author
- [email protected]
- Date
- 2016-11-09 12:13:11 -0800 (Wed, 09 Nov 2016)
Log Message
WebAssembly: Silence noisy warning
https://bugs.webkit.org/show_bug.cgi?id=164459
Reviewed by Yusuke Suzuki.
* wasm/WasmPlan.cpp:
(JSC::Wasm::Plan::Plan):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (208462 => 208463)
--- trunk/Source/_javascript_Core/ChangeLog 2016-11-09 20:06:00 UTC (rev 208462)
+++ trunk/Source/_javascript_Core/ChangeLog 2016-11-09 20:13:11 UTC (rev 208463)
@@ -1,3 +1,13 @@
+2016-11-09 JF Bastien <[email protected]>
+
+ WebAssembly: Silence noisy warning
+ https://bugs.webkit.org/show_bug.cgi?id=164459
+
+ Reviewed by Yusuke Suzuki.
+
+ * wasm/WasmPlan.cpp:
+ (JSC::Wasm::Plan::Plan):
+
2016-11-07 Yusuke Suzuki <[email protected]>
[JSC] The implementation of 8 bit operation in MacroAssembler should care about uint8_t / int8_t
Modified: trunk/Source/_javascript_Core/wasm/WasmPlan.cpp (208462 => 208463)
--- trunk/Source/_javascript_Core/wasm/WasmPlan.cpp 2016-11-09 20:06:00 UTC (rev 208462)
+++ trunk/Source/_javascript_Core/wasm/WasmPlan.cpp 2016-11-09 20:13:11 UTC (rev 208463)
@@ -53,7 +53,8 @@
{
ModuleParser moduleParser(source, sourceLength);
if (!moduleParser.parse()) {
- dataLogLn("Parsing module failed: ", moduleParser.errorMessage());
+ if (verbose)
+ dataLogLn("Parsing module failed: ", moduleParser.errorMessage());
m_errorMessage = moduleParser.errorMessage();
return;
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes