js/src/jit-test/tests/jaeger/bug832670.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.

michael@0 1 enableOsiPointRegisterChecks();
michael@0 2
michael@0 3 gczeal(4);
michael@0 4 eval("(function() { " + "\
michael@0 5 for ( var CHARCODE = 1024; CHARCODE < 65536; CHARCODE+= 1234 ) {\
michael@0 6 unescape( '%u'+(ToUnicodeString(CHARCODE)).substring(0,3) )\
michael@0 7 }\
michael@0 8 function ToUnicodeString( n ) {\
michael@0 9 var string = ToHexString(n);\
michael@0 10 return string;\
michael@0 11 }\
michael@0 12 function ToHexString( n ) {\
michael@0 13 var hex = new Array();\
michael@0 14 for ( var mag = 1; Math.pow(16,mag) <= n ; mag++ ) {}\
michael@0 15 for ( index = 0, mag -= 1; mag > 0; index++, mag-- ) {\
michael@0 16 hex[index] = Math.floor( n / Math.pow(16,mag) );\
michael@0 17 var string ='';\
michael@0 18 string <<= 'A';\
michael@0 19 string += hex[index];\
michael@0 20 }\
michael@0 21 if ( 'var MYVAR=Number.NEGATIVE_INFINITY;MYVAR++;MYVAR' )\
michael@0 22 string = '0' + string;\
michael@0 23 return string;\
michael@0 24 }\
michael@0 25 " + " })();");

mercurial