Skip to content

Commit

Permalink
enabled brute force function specialisation for now: every call site …
Browse files Browse the repository at this point in the history
…gets its own version of the called function. Temporary measure until we have proper re-specialisation implemented.
  • Loading branch information
Stephan Herhut committed Feb 15, 2012
1 parent b1d5b4c commit 0c7ab29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jslib/jit/compiler/typeinference.js
Original file line number Diff line number Diff line change
Expand Up @@ -1146,7 +1146,7 @@ RiverTrail.Typeinference = function () {
break;
}
}
if (found) {
if (false && found) {
resType = found.typeInfo.result;
fun = found;
} else {
Expand Down

0 comments on commit 0c7ab29

Please sign in to comment.