michael@0: michael@0: /* Handle flushing of scripted call ICs pointing to recompiled functions. */ michael@0: michael@0: function add(x, y) { michael@0: var z = x + y; michael@0: return String(x + y); michael@0: } michael@0: michael@0: function foo() { michael@0: var x = 0x7ffffff0; michael@0: var res = ""; michael@0: for (var i = 0; i < 20; i++) { michael@0: res += add(x, i) + ","; michael@0: res += add(x, i) + ","; michael@0: } michael@0: 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,"); michael@0: } michael@0: foo();