Home | History | Annotate | Download | only in wasm

Lines Matching refs:left_index

864     TypeIndex left_index = TypeIndexOf(left);
866 if (left_index == kFixnum) {
867 left_index = right_index;
870 right_index = left_index;
872 if (left_index == kFixnum && right_index == kFixnum) {
873 left_index = kInt32;
876 DCHECK((left_index == right_index) ||
877 (ignore_sign && (left_index <= 1) && (right_index <= 1)));
878 return left_index;