You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
404 B

if (typeof print !== 'function') { print = console.log; }
function test() {
var x, y, z;
var i, n;
x = 0xdeadbeef;
y = 0xcafed00d;
for (i = 0, n = 1e7; i < n; i++) {
z = x & y;
z = x | y;
z = x ^ y;
z = x << y;
z = x >> y;
z = x >>> y;
z = ~x;
}
}
try {
test();
} catch (e) {
print(e.stack || e);
throw e;
}