diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-12-02 14:50:41 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-12-02 14:50:41 -0800 |
commit | 947c6fe1b397b33b1db934a527d482e14ea97a2e (patch) | |
tree | 5e21d9809ec5dbd057d58560b38e28196debb26c /src/compiler.html | |
parent | 82bff2906ea63cb6cb37a418abf7ce7a94bb578c (diff) |
optimize memory usage in compiler.js, and fixes for emscripten on the web
Diffstat (limited to 'src/compiler.html')
-rw-r--r-- | src/compiler.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/compiler.html b/src/compiler.html index 2a268e81..fe045356 100644 --- a/src/compiler.html +++ b/src/compiler.html @@ -5,8 +5,13 @@ Open the web console to see stderr output <hr> <pre id="output"></pre> <script> -arguments = ['', '../poppler.ll']; -//arguments = ['', '../tests/cases/phicubed.ll']; + arguments = ['', '../freetype.ll']; + //arguments = ['', '../tests/cases/phicubed.ll']; + + var outputElement = document.getElementById('output'); + print = function(x) { + //outputElement.innerHTML += x; + }; </script> <script src="compiler.js"> </script> |