aboutsummaryrefslogtreecommitdiff
path: root/src/compiler.html
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-12-25 22:46:51 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-12-25 22:46:51 -0800
commit66021ae3aba2f532610efda849f8dbabc8f94783 (patch)
treeeb045b80a75201c8357320ad6a7b231df51769d0 /src/compiler.html
parent9a3f203085f364c46d9484977e5d6aa44c8cc2f4 (diff)
patch up compiler.html
Diffstat (limited to 'src/compiler.html')
-rw-r--r--src/compiler.html5
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">