blob: 4d29e7f6299859d80085e1c2f4527713940d630c [file] [log] [blame]
fpizlo@apple.comf2999932014-07-15 00:41:39 +00001function foo() {
utatane.tea@gmail.com8a9ab8d2018-02-23 17:54:06 +00002 var value = bar($vm.dfgTrue());
fpizlo@apple.comf2999932014-07-15 00:41:39 +00003 fiatInt52(value);
4 fiatInt52(value);
5}
6
7var thingy = false;
8function bar(p) {
9 if (thingy)
10 return 5.5;
11 return p ? 42 : 5.5;
12}
13
14noInline(foo);
15noInline(bar);
16
17for (var i = 0; i < 1000000; ++i)
18 foo();
19
20thingy = true;
21foo();