js/src/jit-test/tests/jaeger/recompile/flush.js

Thu, 15 Jan 2015 21:13:52 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:13:52 +0100
branch
TOR_BUG_9701
changeset 12
7540298fafa1
permissions
-rw-r--r--

Remove forgotten relic of ABI crash risk averse overloaded method change.

     2 /* Handle flushing of scripted call ICs pointing to recompiled functions. */
     4 function add(x, y) {
     5   var z = x + y;
     6   return String(x + y);
     7 }
     9 function foo() {
    10   var x = 0x7ffffff0;
    11   var res = "";
    12   for (var i = 0; i < 20; i++) {
    13     res += add(x, i) + ",";
    14     res += add(x, i) + ",";
    15   }
    16   assertEq(res, "2147483632,2147483632,2147483633,2147483633,2147483634,2147483634,2147483635,2147483635,2147483636,2147483636,2147483637,2147483637,2147483638,2147483638,2147483639,2147483639,2147483640,2147483640,2147483641,2147483641,2147483642,2147483642,2147483643,2147483643,2147483644,2147483644,2147483645,2147483645,2147483646,2147483646,2147483647,2147483647,2147483648,2147483648,2147483649,2147483649,2147483650,2147483650,2147483651,2147483651,");
    17 }
    18 foo();

mercurial