diff options
author | Sunil Shetye | 2018-06-27 12:06:46 +0530 |
---|---|---|
committer | Sunil Shetye | 2018-06-27 12:06:46 +0530 |
commit | a340efc94b289c1e1956e214baa76aade1de997d (patch) | |
tree | 0b1e1eead4a73f7ef32f0ac0ee465c28e3b3ed64 /js/Branching | |
parent | eb7c8e0cd42d4afe02be3adda2e94b6b0dfdaa00 (diff) | |
download | sci2js-a340efc94b289c1e1956e214baa76aade1de997d.tar.gz sci2js-a340efc94b289c1e1956e214baa76aade1de997d.tar.bz2 sci2js-a340efc94b289c1e1956e214baa76aade1de997d.zip |
update function list
Diffstat (limited to 'js/Branching')
-rw-r--r-- | js/Branching/CLKFROM.js | 2 | ||||
-rw-r--r-- | js/Branching/CLKGOTO.js | 2 | ||||
-rw-r--r-- | js/Branching/CLKGotoTagVisibility.js | 2 | ||||
-rw-r--r-- | js/Branching/FROM.js | 2 | ||||
-rw-r--r-- | js/Branching/FROMMO.js | 2 | ||||
-rw-r--r-- | js/Branching/GOTO.js | 2 | ||||
-rw-r--r-- | js/Branching/GOTOMO.js | 2 | ||||
-rw-r--r-- | js/Branching/GotoTagVisibility.js | 2 | ||||
-rw-r--r-- | js/Branching/GotoTagVisibilityMO.js | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/js/Branching/CLKFROM.js b/js/Branching/CLKFROM.js index b49997ff..34b03f28 100644 --- a/js/Branching/CLKFROM.js +++ b/js/Branching/CLKFROM.js @@ -40,7 +40,7 @@ function CLKFROM() { this.x.model = model; break; } - needcompile=resume(needcompile) + needcompile = resume(needcompile) return new BasicBlock(this.x); } } diff --git a/js/Branching/CLKGOTO.js b/js/Branching/CLKGOTO.js index d01fd341..33e54e24 100644 --- a/js/Branching/CLKGOTO.js +++ b/js/Branching/CLKGOTO.js @@ -49,7 +49,7 @@ function CLKGOTO() { break; } } - needcompile=resume(needcompile) + needcompile = resume(needcompile) return new BasicBlock(this.x); } } diff --git a/js/Branching/CLKGotoTagVisibility.js b/js/Branching/CLKGotoTagVisibility.js index 5c73f47a..bb7a5819 100644 --- a/js/Branching/CLKGotoTagVisibility.js +++ b/js/Branching/CLKGotoTagVisibility.js @@ -46,7 +46,7 @@ function CLKGotoTagVisibility() { break; } } - needcompile=resume(needcompile) + needcompile = resume(needcompile) return new BasicBlock(this.x); } } diff --git a/js/Branching/FROM.js b/js/Branching/FROM.js index 2fd6c169..8a83a721 100644 --- a/js/Branching/FROM.js +++ b/js/Branching/FROM.js @@ -46,7 +46,7 @@ function FROM() { break; } } - needcompile=resume(needcompile) + needcompile = resume(needcompile) return new BasicBlock(this.x); } } diff --git a/js/Branching/FROMMO.js b/js/Branching/FROMMO.js index 0848ff5b..cebe0d9b 100644 --- a/js/Branching/FROMMO.js +++ b/js/Branching/FROMMO.js @@ -49,7 +49,7 @@ function FROMMO() { break; } } - needcompile=resume(needcompile) + needcompile = resume(needcompile) return new BasicBlock(this.x); } } diff --git a/js/Branching/GOTO.js b/js/Branching/GOTO.js index 52abc035..e58a98e5 100644 --- a/js/Branching/GOTO.js +++ b/js/Branching/GOTO.js @@ -53,7 +53,7 @@ function GOTO() { break; } } - needcompile=resume(needcompile) + needcompile = resume(needcompile) return new BasicBlock(this.x); } } diff --git a/js/Branching/GOTOMO.js b/js/Branching/GOTOMO.js index b4d615bf..14036abb 100644 --- a/js/Branching/GOTOMO.js +++ b/js/Branching/GOTOMO.js @@ -56,7 +56,7 @@ function GOTOMO() { break; } } - needcompile=resume(needcompile) + needcompile = resume(needcompile) return new BasicBlock(this.x); } } diff --git a/js/Branching/GotoTagVisibility.js b/js/Branching/GotoTagVisibility.js index d0713180..0f514bc2 100644 --- a/js/Branching/GotoTagVisibility.js +++ b/js/Branching/GotoTagVisibility.js @@ -46,7 +46,7 @@ function GotoTagVisibility() { break; } } - needcompile=resume(needcompile) + needcompile = resume(needcompile) return new BasicBlock(this.x); } } diff --git a/js/Branching/GotoTagVisibilityMO.js b/js/Branching/GotoTagVisibilityMO.js index 5e5c3555..f2131e56 100644 --- a/js/Branching/GotoTagVisibilityMO.js +++ b/js/Branching/GotoTagVisibilityMO.js @@ -46,7 +46,7 @@ function GotoTagVisibilityMO() { break; } } - needcompile=resume(needcompile) + needcompile = resume(needcompile) return new BasicBlock(this.x); } } |