diff options
Diffstat (limited to 'js/IntegerOp/BITCLEAR.js')
-rw-r--r-- | js/IntegerOp/BITCLEAR.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/IntegerOp/BITCLEAR.js b/js/IntegerOp/BITCLEAR.js index 69a6c8e9..4cb78029 100644 --- a/js/IntegerOp/BITCLEAR.js +++ b/js/IntegerOp/BITCLEAR.js @@ -15,6 +15,7 @@ function BITCLEAR() { exprs = [[sci2exp(3)],[sci2exp(0)]]; gr_i = []; this.x = standard_define([4,2],model,exprs,gr_i); + return new BasicBlock(this.x); } BITCLEAR.prototype.details = function BITCLEAR() { return this.x; @@ -83,5 +84,6 @@ function BITCLEAR() { break; } } + return new BasicBlock(this.x); } } |