summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug674507-1.js
blob: c13f4e376dd10b95220768f3a7f4d196cb3bb954 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function branchy(v0,v1) {
 var result = 0;
 if (v0) {
  if (v0 & v0) {
   if (v1 & v0) {
   } else {
    result = v0 & v0 & v1;
   }
  } else {
   if (v0 & v0 & v0) {
    result = v1;
   }
  }
 } else {
   if (v0 & v1 & v0) { }
 }
 return result;
}
branchy(932,256,368)