aboutsummaryrefslogtreecommitdiff
path: root/src/library.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/library.js')
-rw-r--r--src/library.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library.js b/src/library.js
index 3d91926a..09c4d8f1 100644
--- a/src/library.js
+++ b/src/library.js
@@ -155,8 +155,8 @@ var Library = {
llvm_umul_with_overflow_i32: function(x, y) {
return {
- f1: x*y,
- f2: 0, // We never overflow... for now
+ f0: x*y,
+ f1: 0, // We never overflow... for now
};
},