/js/src/jit-test/tests/jaeger/bug617458.js

http://github.com/zpao/v8monkey · JavaScript · 6 lines · 5 code · 1 blank · 0 comment · 0 complexity · 0f91b0f6821585a5cc21690b51cc4e4f MD5 · raw file

  1. function f(x) {
  2. var a = 4 | x;
  3. a = +a;
  4. }
  5. f(10);