aboutsummaryrefslogtreecommitdiff
path: root/src/library.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/library.js')
-rw-r--r--src/library.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/library.js b/src/library.js
index b9c13055..679cdd6d 100644
--- a/src/library.js
+++ b/src/library.js
@@ -4771,6 +4771,15 @@ LibraryManager.library = {
// type_info for void*.
_ZTIPv: [0],
+ llvm_uadd_with_overflow_i8: function(x, y) {
+ x = (x>>>0) & 0xff;
+ y = (y>>>0) & 0xff;
+ return {
+ f0: (x+y) & 0xff,
+ f1: x+y > 255
+ };
+ },
+
llvm_uadd_with_overflow_i16: function(x, y) {
x = (x>>>0) & 0xffff;
y = (y>>>0) & 0xffff;