Skip to content

Commit 66021ae

Browse files
committed
patch up compiler.html
1 parent 9a3f203 commit 66021ae

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/compiler.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@ <h2>Run the emscripten compiler in a web page, just for laughs</h2>
55
<hr>
66
<pre id="output"></pre>
77
<script>
8-
arguments = ['', '../freetype.ll'];
9-
//arguments = ['', '../tests/cases/phicubed.ll'];
8+
arguments = ['', 'hello_world.ll'];
109

1110
var outputElement = document.getElementById('output');
1211
print = function(x) {
13-
//outputElement.innerHTML += x;
12+
outputElement.innerHTML += x;
1413
};
1514
</script>
1615
<script src="compiler.js">

0 commit comments

Comments
 (0)