michael@0: function branchy(v0,v1) { michael@0: var result = 0; michael@0: if (v0) { michael@0: if (v0 & v0) { michael@0: if (v1 & v0) { michael@0: } else { michael@0: result = v0 & v0 & v1; michael@0: } michael@0: } else { michael@0: if (v0 & v0 & v0) { michael@0: result = v1; michael@0: } michael@0: } michael@0: } else { michael@0: if (v0 & v1 & v0) { } michael@0: } michael@0: return result; michael@0: } michael@0: branchy(932,256,368)