summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/asm.js
blob: 6ad5a620edf12e1e9867e2ffbe8e135c48b6a3fa (plain)
1
2
3
4
5
6
7
8
9
10
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

var asmjs = (function() {
  "use asm";
  function f() {
    return 1 | 0;
  }
  return { f: f };
})();