<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[210204] trunk/JSTests</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/210204">210204</a></dd>
<dt>Author</dt> <dd>sbarati@apple.com</dd>
<dt>Date</dt> <dd>2016-12-29 10:28:08 -0800 (Thu, 29 Dec 2016)</dd>
</dl>

<h3>Log Message</h3>
<pre>WebAssembly: Rebase spec-tests now that wabt has been updated to produce certain kinds of invalid modules
https://bugs.webkit.org/show_bug.cgi?id=166491
&lt;rdar://problem/29814999&gt;

Reviewed by Yusuke Suzuki.

Based off these revisions:
- spec: b055d01ea1dfdd7a5231ae779095435f836de97f
- wabt: d0d44702c753f851b094615298a2f4d4e3c21035

The reason for the rebase is that wabt was updated to stop
silently rejecting invalid modules. This was needed because
some of the spec tests check to make sure that the module
is invalid, but wabt was silently ignoring the errors and
generating valid modules:
https://github.com/WebAssembly/wabt/issues/256

* wasm.yaml:
* wasm/spec-tests/address.wast.js:
* wasm/spec-tests/binary.wast.js:
* wasm/spec-tests/block.wast.js:
* wasm/spec-tests/br.wast.js:
* wasm/spec-tests/br_if.wast.js:
* wasm/spec-tests/br_table.wast.js:
* wasm/spec-tests/break-drop.wast.js:
* wasm/spec-tests/call.wast.js:
* wasm/spec-tests/call_indirect.wast.js:
* wasm/spec-tests/comments.wast.js:
* wasm/spec-tests/conversions.wast.js:
* wasm/spec-tests/custom_section.wast.js:
* wasm/spec-tests/endianness.wast.js:
* wasm/spec-tests/exports.wast.js:
* wasm/spec-tests/f32.wast.js:
* wasm/spec-tests/f32_cmp.wast.js:
* wasm/spec-tests/f64.wast.js:
* wasm/spec-tests/f64_cmp.wast.js:
* wasm/spec-tests/fac.wast.js:
* wasm/spec-tests/float_exprs.wast.js:
* wasm/spec-tests/float_literals.wast.js:
* wasm/spec-tests/float_memory.wast.js:
* wasm/spec-tests/float_misc.wast.js:
* wasm/spec-tests/forward.wast.js:
* wasm/spec-tests/func.wast.js:
* wasm/spec-tests/func_ptrs.wast.js:
* wasm/spec-tests/get_local.wast.js:
* wasm/spec-tests/globals.wast.js:
* wasm/spec-tests/i32.wast.js:
* wasm/spec-tests/i64.wast.js:
* wasm/spec-tests/imports.wast.js:
* wasm/spec-tests/int_exprs.wast.js:
* wasm/spec-tests/int_literals.wast.js:
* wasm/spec-tests/left-to-right.wast.js:
* wasm/spec-tests/linking.wast.js:
* wasm/spec-tests/loop.wast.js:
* wasm/spec-tests/memory.wast.js:
* wasm/spec-tests/memory_redundancy.wast.js:
* wasm/spec-tests/memory_trap.wast.js:
* wasm/spec-tests/names.wast.js:
* wasm/spec-tests/nop.wast.js:
* wasm/spec-tests/resizing.wast.js:
* wasm/spec-tests/return.wast.js:
* wasm/spec-tests/select.wast.js:
* wasm/spec-tests/set_local.wast.js:
* wasm/spec-tests/skip-stack-guard-page.wast.js:
* wasm/spec-tests/stack.wast.js:
* wasm/spec-tests/start.wast.js:
* wasm/spec-tests/store_retval.wast.js:
* wasm/spec-tests/switch.wast.js:
* wasm/spec-tests/tee_local.wast.js:
* wasm/spec-tests/traps.wast.js:
* wasm/spec-tests/typecheck.wast.js:
* wasm/spec-tests/unreachable.wast.js:
* wasm/spec-tests/unwind.wast.js:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkJSTestsChangeLog">trunk/JSTests/ChangeLog</a></li>
<li><a href="#trunkJSTestswasmspectestsaddresswastjs">trunk/JSTests/wasm/spec-tests/address.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsbinarywastjs">trunk/JSTests/wasm/spec-tests/binary.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsblockwastjs">trunk/JSTests/wasm/spec-tests/block.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsbrwastjs">trunk/JSTests/wasm/spec-tests/br.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsbr_ifwastjs">trunk/JSTests/wasm/spec-tests/br_if.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsbr_tablewastjs">trunk/JSTests/wasm/spec-tests/br_table.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsbreakdropwastjs">trunk/JSTests/wasm/spec-tests/break-drop.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestscallwastjs">trunk/JSTests/wasm/spec-tests/call.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestscall_indirectwastjs">trunk/JSTests/wasm/spec-tests/call_indirect.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestscommentswastjs">trunk/JSTests/wasm/spec-tests/comments.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsconversionswastjs">trunk/JSTests/wasm/spec-tests/conversions.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestscustom_sectionwastjs">trunk/JSTests/wasm/spec-tests/custom_section.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsendiannesswastjs">trunk/JSTests/wasm/spec-tests/endianness.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsexportswastjs">trunk/JSTests/wasm/spec-tests/exports.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsf32wastjs">trunk/JSTests/wasm/spec-tests/f32.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsf32_cmpwastjs">trunk/JSTests/wasm/spec-tests/f32_cmp.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsf64wastjs">trunk/JSTests/wasm/spec-tests/f64.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsf64_cmpwastjs">trunk/JSTests/wasm/spec-tests/f64_cmp.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsfacwastjs">trunk/JSTests/wasm/spec-tests/fac.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsfloat_exprswastjs">trunk/JSTests/wasm/spec-tests/float_exprs.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsfloat_literalswastjs">trunk/JSTests/wasm/spec-tests/float_literals.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsfloat_memorywastjs">trunk/JSTests/wasm/spec-tests/float_memory.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsfloat_miscwastjs">trunk/JSTests/wasm/spec-tests/float_misc.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsforwardwastjs">trunk/JSTests/wasm/spec-tests/forward.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsfuncwastjs">trunk/JSTests/wasm/spec-tests/func.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsfunc_ptrswastjs">trunk/JSTests/wasm/spec-tests/func_ptrs.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsget_localwastjs">trunk/JSTests/wasm/spec-tests/get_local.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsglobalswastjs">trunk/JSTests/wasm/spec-tests/globals.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsi32wastjs">trunk/JSTests/wasm/spec-tests/i32.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsi64wastjs">trunk/JSTests/wasm/spec-tests/i64.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsimportswastjs">trunk/JSTests/wasm/spec-tests/imports.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsint_exprswastjs">trunk/JSTests/wasm/spec-tests/int_exprs.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsint_literalswastjs">trunk/JSTests/wasm/spec-tests/int_literals.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestslefttorightwastjs">trunk/JSTests/wasm/spec-tests/left-to-right.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestslinkingwastjs">trunk/JSTests/wasm/spec-tests/linking.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsloopwastjs">trunk/JSTests/wasm/spec-tests/loop.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsmemorywastjs">trunk/JSTests/wasm/spec-tests/memory.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsmemory_redundancywastjs">trunk/JSTests/wasm/spec-tests/memory_redundancy.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsmemory_trapwastjs">trunk/JSTests/wasm/spec-tests/memory_trap.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsnameswastjs">trunk/JSTests/wasm/spec-tests/names.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsnopwastjs">trunk/JSTests/wasm/spec-tests/nop.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsresizingwastjs">trunk/JSTests/wasm/spec-tests/resizing.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsreturnwastjs">trunk/JSTests/wasm/spec-tests/return.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsselectwastjs">trunk/JSTests/wasm/spec-tests/select.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsset_localwastjs">trunk/JSTests/wasm/spec-tests/set_local.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsskipstackguardpagewastjs">trunk/JSTests/wasm/spec-tests/skip-stack-guard-page.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsstackwastjs">trunk/JSTests/wasm/spec-tests/stack.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsstartwastjs">trunk/JSTests/wasm/spec-tests/start.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsstore_retvalwastjs">trunk/JSTests/wasm/spec-tests/store_retval.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsswitchwastjs">trunk/JSTests/wasm/spec-tests/switch.wast.js</a></li>
<li><a href="#trunkJSTestswasmspecteststee_localwastjs">trunk/JSTests/wasm/spec-tests/tee_local.wast.js</a></li>
<li><a href="#trunkJSTestswasmspecteststrapswastjs">trunk/JSTests/wasm/spec-tests/traps.wast.js</a></li>
<li><a href="#trunkJSTestswasmspecteststypecheckwastjs">trunk/JSTests/wasm/spec-tests/typecheck.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsunreachablewastjs">trunk/JSTests/wasm/spec-tests/unreachable.wast.js</a></li>
<li><a href="#trunkJSTestswasmspectestsunwindwastjs">trunk/JSTests/wasm/spec-tests/unwind.wast.js</a></li>
<li><a href="#trunkJSTestswasmyaml">trunk/JSTests/wasm.yaml</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkJSTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/ChangeLog (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/ChangeLog        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/ChangeLog        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,3 +1,79 @@
</span><ins>+2016-12-29  Saam Barati  &lt;sbarati@apple.com&gt;
+
+        WebAssembly: Rebase spec-tests now that wabt has been updated to produce certain kinds of invalid modules
+        https://bugs.webkit.org/show_bug.cgi?id=166491
+        &lt;rdar://problem/29814999&gt;
+
+        Reviewed by Yusuke Suzuki.
+
+        Based off these revisions:
+        - spec: b055d01ea1dfdd7a5231ae779095435f836de97f
+        - wabt: d0d44702c753f851b094615298a2f4d4e3c21035
+
+        The reason for the rebase is that wabt was updated to stop
+        silently rejecting invalid modules. This was needed because
+        some of the spec tests check to make sure that the module
+        is invalid, but wabt was silently ignoring the errors and
+        generating valid modules:
+        https://github.com/WebAssembly/wabt/issues/256
+
+        * wasm.yaml:
+        * wasm/spec-tests/address.wast.js:
+        * wasm/spec-tests/binary.wast.js:
+        * wasm/spec-tests/block.wast.js:
+        * wasm/spec-tests/br.wast.js:
+        * wasm/spec-tests/br_if.wast.js:
+        * wasm/spec-tests/br_table.wast.js:
+        * wasm/spec-tests/break-drop.wast.js:
+        * wasm/spec-tests/call.wast.js:
+        * wasm/spec-tests/call_indirect.wast.js:
+        * wasm/spec-tests/comments.wast.js:
+        * wasm/spec-tests/conversions.wast.js:
+        * wasm/spec-tests/custom_section.wast.js:
+        * wasm/spec-tests/endianness.wast.js:
+        * wasm/spec-tests/exports.wast.js:
+        * wasm/spec-tests/f32.wast.js:
+        * wasm/spec-tests/f32_cmp.wast.js:
+        * wasm/spec-tests/f64.wast.js:
+        * wasm/spec-tests/f64_cmp.wast.js:
+        * wasm/spec-tests/fac.wast.js:
+        * wasm/spec-tests/float_exprs.wast.js:
+        * wasm/spec-tests/float_literals.wast.js:
+        * wasm/spec-tests/float_memory.wast.js:
+        * wasm/spec-tests/float_misc.wast.js:
+        * wasm/spec-tests/forward.wast.js:
+        * wasm/spec-tests/func.wast.js:
+        * wasm/spec-tests/func_ptrs.wast.js:
+        * wasm/spec-tests/get_local.wast.js:
+        * wasm/spec-tests/globals.wast.js:
+        * wasm/spec-tests/i32.wast.js:
+        * wasm/spec-tests/i64.wast.js:
+        * wasm/spec-tests/imports.wast.js:
+        * wasm/spec-tests/int_exprs.wast.js:
+        * wasm/spec-tests/int_literals.wast.js:
+        * wasm/spec-tests/left-to-right.wast.js:
+        * wasm/spec-tests/linking.wast.js:
+        * wasm/spec-tests/loop.wast.js:
+        * wasm/spec-tests/memory.wast.js:
+        * wasm/spec-tests/memory_redundancy.wast.js:
+        * wasm/spec-tests/memory_trap.wast.js:
+        * wasm/spec-tests/names.wast.js:
+        * wasm/spec-tests/nop.wast.js:
+        * wasm/spec-tests/resizing.wast.js:
+        * wasm/spec-tests/return.wast.js:
+        * wasm/spec-tests/select.wast.js:
+        * wasm/spec-tests/set_local.wast.js:
+        * wasm/spec-tests/skip-stack-guard-page.wast.js:
+        * wasm/spec-tests/stack.wast.js:
+        * wasm/spec-tests/start.wast.js:
+        * wasm/spec-tests/store_retval.wast.js:
+        * wasm/spec-tests/switch.wast.js:
+        * wasm/spec-tests/tee_local.wast.js:
+        * wasm/spec-tests/traps.wast.js:
+        * wasm/spec-tests/typecheck.wast.js:
+        * wasm/spec-tests/unreachable.wast.js:
+        * wasm/spec-tests/unwind.wast.js:
+
</ins><span class="cx"> 2016-12-28  Saam Barati  &lt;sbarati@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         WebAssembly: Don't allow duplicate export names
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsaddresswastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/address.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/address.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/address.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsbinarywastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/binary.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/binary.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/binary.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsblockwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/block.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/block.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/block.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsbrwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/br.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/br.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/br.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsbr_ifwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/br_if.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/br_if.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/br_if.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsbr_tablewastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/br_table.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/br_table.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/br_table.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsbreakdropwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/break-drop.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/break-drop.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/break-drop.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestscallwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/call.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/call.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/call.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestscall_indirectwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/call_indirect.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/call_indirect.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/call_indirect.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestscommentswastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/comments.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/comments.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/comments.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsconversionswastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/conversions.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/conversions.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/conversions.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestscustom_sectionwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/custom_section.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/custom_section.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/custom_section.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsendiannesswastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/endianness.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/endianness.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/endianness.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsexportswastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/exports.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/exports.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/exports.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsf32wastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/f32.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/f32.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/f32.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsf32_cmpwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/f32_cmp.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/f32_cmp.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/f32_cmp.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsf64wastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/f64.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/f64.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/f64.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsf64_cmpwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/f64_cmp.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/f64_cmp.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/f64_cmp.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsfacwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/fac.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/fac.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/fac.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsfloat_exprswastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/float_exprs.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/float_exprs.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/float_exprs.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsfloat_literalswastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/float_literals.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/float_literals.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/float_literals.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsfloat_memorywastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/float_memory.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/float_memory.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/float_memory.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsfloat_miscwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/float_misc.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/float_misc.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/float_misc.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsforwardwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/forward.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/forward.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/forward.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsfuncwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/func.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/func.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/func.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsfunc_ptrswastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/func_ptrs.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/func_ptrs.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/func_ptrs.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span><span class="lines">@@ -97,10 +97,10 @@
</span><span class="cx"> assert_return(() =&gt; $$.exports[&quot;two&quot;](13), 14);
</span><span class="cx"> assert_return(() =&gt; $$.exports[&quot;three&quot;](13), 11);
</span><span class="cx"> $$.exports[&quot;four&quot;](83);
</span><del>-assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00&quot;);
-assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x01\x04\x01\x60\x00\x00\x03\x02\x01\x00\x0a\x04\x01\x02\x00\x0b&quot;);
</del><ins>+assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x09\x06\x01\x00\x41\x00\x0b\x00&quot;);
+assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x01\x04\x01\x60\x00\x00\x03\x02\x01\x00\x09\x07\x01\x00\x41\x00\x0b\x01\x00\x0a\x04\x01\x02\x00\x0b&quot;);
</ins><span class="cx"> assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x04\x04\x01\x70\x00\x01\x09\x06\x01\x00\x42\x00\x0b\x00&quot;);
</span><del>-assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x04\x04\x01\x70\x00\x01\x09\x06\x01\x00\x41\x00\x0b\x00&quot;);
</del><ins>+assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x04\x04\x01\x70\x00\x01\x09\x07\x01\x00\x41\x00\x68\x0b\x00&quot;);
</ins><span class="cx"> assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x04\x04\x01\x70\x00\x01\x09\x05\x01\x00\x01\x0b\x00&quot;);
</span><span class="cx"> assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x03\x02\x01\x2a\x0a\x04\x01\x02\x00\x0b&quot;);
</span><span class="cx"> assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x02\x12\x01\x08\x73\x70\x65\x63\x74\x65\x73\x74\x05\x70\x72\x69\x6e\x74\x00\x2b&quot;);
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsget_localwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/get_local.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/get_local.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/get_local.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsglobalswastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/globals.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/globals.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/globals.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span><span class="lines">@@ -114,7 +114,7 @@
</span><span class="cx"> assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x02\x08\x01\x01\x6d\x01\x61\x03\x7f\x01&quot;);
</span><span class="cx"> assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x06\x09\x01\x7d\x01\x43\x00\x00\x00\x00\x0b\x07\x05\x01\x01\x61\x03\x00&quot;);
</span><span class="cx"> assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x06\x09\x01\x7d\x01\x43\x00\x00\x00\x00\x0b\x07\x05\x01\x01\x61\x03\x00&quot;);
</span><del>-assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x06\x09\x01\x7d\x00\x43\x00\x00\x00\x00\x0b&quot;);
</del><ins>+assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x06\x0a\x01\x7d\x00\x43\x00\x00\x00\x00\x8c\x0b&quot;);
</ins><span class="cx"> assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x06\x06\x01\x7d\x00\x20\x00\x0b&quot;);
</span><span class="cx"> assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x06\x09\x01\x7f\x00\x43\x00\x00\x00\x00\x0b&quot;);
</span><span class="cx"> assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x06\x06\x01\x7f\x00\x23\x00\x0b&quot;);
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsi32wastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/i32.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/i32.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/i32.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsi64wastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/i64.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/i64.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/i64.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsimportswastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/imports.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/imports.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/imports.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsint_exprswastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/int_exprs.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/int_exprs.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/int_exprs.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsint_literalswastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/int_literals.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/int_literals.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/int_literals.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestslefttorightwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/left-to-right.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/left-to-right.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/left-to-right.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestslinkingwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/linking.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/linking.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/linking.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsloopwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/loop.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/loop.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/loop.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsmemorywastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/memory.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/memory.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/memory.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span><span class="lines">@@ -111,9 +111,9 @@
</span><span class="cx"> assert_return(() =&gt; $$.exports[&quot;memsize&quot;](), 0);
</span><span class="cx"> $$ = instance(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x01\x05\x01\x60\x00\x01\x7f\x03\x02\x01\x00\x05\x04\x01\x01\x01\x01\x07\x0b\x01\x07\x6d\x65\x6d\x73\x69\x7a\x65\x00\x00\x0a\x06\x01\x04\x00\x3f\x00\x0b\x0b\x07\x01\x00\x41\x00\x0b\x01\x78&quot;);
</span><span class="cx"> assert_return(() =&gt; $$.exports[&quot;memsize&quot;](), 1);
</span><del>-assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00&quot;);
-assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00&quot;);
-assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00&quot;);
</del><ins>+assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x0b\x06\x01\x00\x41\x00\x0b\x00&quot;);
+assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x0b\x06\x01\x00\x41\x00\x0b\x00&quot;);
+assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x0b\x07\x01\x00\x41\x00\x0b\x01\x78&quot;);
</ins><span class="cx"> assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x01\x04\x01\x60\x00\x00\x03\x02\x01\x00\x0a\x0a\x01\x08\x00\x41\x00\x2a\x02\x00\x1a\x0b&quot;);
</span><span class="cx"> assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x01\x04\x01\x60\x00\x00\x03\x02\x01\x00\x0a\x0e\x01\x0c\x00\x43\x00\x00\x00\x00\x41\x00\x38\x02\x00\x0b&quot;);
</span><span class="cx"> assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x01\x04\x01\x60\x00\x00\x03\x02\x01\x00\x0a\x0a\x01\x08\x00\x41\x00\x2c\x00\x00\x1a\x0b&quot;);
</span><span class="lines">@@ -121,7 +121,7 @@
</span><span class="cx"> assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x01\x04\x01\x60\x00\x00\x03\x02\x01\x00\x0a\x07\x01\x05\x00\x3f\x00\x1a\x0b&quot;);
</span><span class="cx"> assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x01\x04\x01\x60\x00\x00\x03\x02\x01\x00\x0a\x09\x01\x07\x00\x41\x00\x40\x00\x1a\x0b&quot;);
</span><span class="cx"> assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x05\x03\x01\x00\x01\x0b\x06\x01\x00\x42\x00\x0b\x00&quot;);
</span><del>-assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x05\x03\x01\x00\x01\x0b\x06\x01\x00\x41\x00\x0b\x00&quot;);
</del><ins>+assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x05\x03\x01\x00\x01\x0b\x07\x01\x00\x41\x00\x68\x0b\x00&quot;);
</ins><span class="cx"> assert_invalid(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x05\x03\x01\x00\x01\x0b\x05\x01\x00\x01\x0b\x00&quot;);
</span><span class="cx"> assert_unlinkable(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x05\x04\x01\x01\x00\x00\x0b\x07\x01\x00\x41\x00\x0b\x01\x61&quot;);
</span><span class="cx"> assert_unlinkable(&quot;\x00\x61\x73\x6d\x0d\x00\x00\x00\x05\x04\x01\x01\x01\x02\x0b\x0f\x02\x00\x41\x00\x0b\x01\x61\x00\x41\x80\x80\x06\x0b\x01\x62&quot;);
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsmemory_redundancywastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/memory_redundancy.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/memory_redundancy.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/memory_redundancy.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsmemory_trapwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/memory_trap.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/memory_trap.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/memory_trap.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsnameswastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/names.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/names.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/names.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsnopwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/nop.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/nop.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/nop.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsresizingwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/resizing.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/resizing.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/resizing.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsreturnwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/return.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/return.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/return.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsselectwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/select.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/select.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/select.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsset_localwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/set_local.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/set_local.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/set_local.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsskipstackguardpagewastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/skip-stack-guard-page.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/skip-stack-guard-page.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/skip-stack-guard-page.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsstackwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/stack.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/stack.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/stack.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsstartwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/start.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/start.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/start.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsstore_retvalwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/store_retval.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/store_retval.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/store_retval.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsswitchwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/switch.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/switch.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/switch.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspecteststee_localwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/tee_local.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/tee_local.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/tee_local.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspecteststrapswastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/traps.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/traps.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/traps.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspecteststypecheckwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/typecheck.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/typecheck.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/typecheck.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsunreachablewastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/unreachable.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/unreachable.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/unreachable.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmspectestsunwindwastjs"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm/spec-tests/unwind.wast.js (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm/spec-tests/unwind.wast.js        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm/spec-tests/unwind.wast.js        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -1,4 +1,4 @@
</span><del>-/* Copied from *
</del><ins>+/* Lovingly generated by gen-spec-js.py based on the wonderful content of *
</ins><span class="cx">  * https://github.com/WebAssembly/spec/blob/master/interpreter/host/js.ml */
</span><span class="cx"> 'use strict';
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkJSTestswasmyaml"></a>
<div class="modfile"><h4>Modified: trunk/JSTests/wasm.yaml (210203 => 210204)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/JSTests/wasm.yaml        2016-12-29 03:10:04 UTC (rev 210203)
+++ trunk/JSTests/wasm.yaml        2016-12-29 18:28:08 UTC (rev 210204)
</span><span class="lines">@@ -104,13 +104,13 @@
</span><span class="cx">   cmd: runWebAssemblySpecTest :normal
</span><span class="cx"> 
</span><span class="cx"> - path: wasm/spec-tests/func_ptrs.wast.js
</span><del>-  cmd: runWebAssemblySpecTest :skip
</del><ins>+  cmd: runWebAssemblySpecTest :normal
</ins><span class="cx"> 
</span><span class="cx"> - path: wasm/spec-tests/get_local.wast.js
</span><span class="cx">   cmd: runWebAssemblySpecTest :normal
</span><span class="cx"> 
</span><span class="cx"> - path: wasm/spec-tests/globals.wast.js
</span><del>-  cmd: runWebAssemblySpecTest :skip
</del><ins>+  cmd: runWebAssemblySpecTest :normal
</ins><span class="cx"> 
</span><span class="cx"> - path: wasm/spec-tests/i32.wast.js
</span><span class="cx">   cmd: runWebAssemblySpecTest :normal
</span><span class="lines">@@ -122,7 +122,7 @@
</span><span class="cx">   cmd: runWebAssemblySpecTest :skip
</span><span class="cx"> 
</span><span class="cx"> - path: wasm/spec-tests/int_exprs.wast.js
</span><del>-  cmd: runWebAssemblySpecTest :skip
</del><ins>+  cmd: runWebAssemblySpecTest :normal
</ins><span class="cx"> 
</span><span class="cx"> - path: wasm/spec-tests/int_literals.wast.js
</span><span class="cx">   cmd: runWebAssemblySpecTest :normal
</span><span class="lines">@@ -158,7 +158,7 @@
</span><span class="cx">   cmd: runWebAssemblySpecTest :normal
</span><span class="cx"> 
</span><span class="cx"> - path: wasm/spec-tests/select.wast.js
</span><del>-  cmd: runWebAssemblySpecTest :skip
</del><ins>+  cmd: runWebAssemblySpecTest :normal
</ins><span class="cx"> 
</span><span class="cx"> - path: wasm/spec-tests/set_local.wast.js
</span><span class="cx">   cmd: runWebAssemblySpecTest :normal
</span><span class="lines">@@ -182,7 +182,7 @@
</span><span class="cx">   cmd: runWebAssemblySpecTest :normal
</span><span class="cx"> 
</span><span class="cx"> - path: wasm/spec-tests/traps.wast.js
</span><del>-  cmd: runWebAssemblySpecTest :skip
</del><ins>+  cmd: runWebAssemblySpecTest :normal
</ins><span class="cx"> 
</span><span class="cx"> - path: wasm/spec-tests/typecheck.wast.js
</span><span class="cx">   cmd: runWebAssemblySpecTest :normal
</span><span class="lines">@@ -191,5 +191,5 @@
</span><span class="cx">   cmd: runWebAssemblySpecTest :normal
</span><span class="cx"> 
</span><span class="cx"> - path: wasm/spec-tests/unwind.wast.js
</span><del>-  cmd: runWebAssemblySpecTest :skip
</del><ins>+  cmd: runWebAssemblySpecTest :normal
</ins><span class="cx"> 
</span></span></pre>
</div>
</div>

</body>
</html>