diff options
Diffstat (limited to 'src/compiler.html')
-rw-r--r-- | src/compiler.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/compiler.html b/src/compiler.html index fe045356..d73da941 100644 --- a/src/compiler.html +++ b/src/compiler.html @@ -5,12 +5,11 @@ Open the web console to see stderr output <hr> <pre id="output"></pre> <script> - arguments = ['', '../freetype.ll']; - //arguments = ['', '../tests/cases/phicubed.ll']; + arguments = ['', 'hello_world.ll']; var outputElement = document.getElementById('output'); print = function(x) { - //outputElement.innerHTML += x; + outputElement.innerHTML += x; }; </script> <script src="compiler.js"> |