intel/mi_builder: Fix some indentation

This got lost in the rebase on top of the s/gen_mi_/mi_/ change

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9467>
This commit is contained in:
Jason Ekstrand 2021-03-08 16:09:34 -06:00
parent 45e5c6b641
commit 62c64e7b9d

View file

@ -910,7 +910,7 @@ mi_ishl(struct mi_builder *b, struct mi_value src0, struct mi_value src1)
return mi_imm(mi_value_to_u64(src0) << mi_value_to_u64(src1));
return mi_math_binop(b, MI_ALU_SHL, src0, src1,
MI_ALU_STORE, MI_ALU_ACCU);
MI_ALU_STORE, MI_ALU_ACCU);
}
static inline struct mi_value
@ -925,7 +925,7 @@ mi_ushr(struct mi_builder *b, struct mi_value src0, struct mi_value src1)
return mi_imm(mi_value_to_u64(src0) >> mi_value_to_u64(src1));
return mi_math_binop(b, MI_ALU_SHR, src0, src1,
MI_ALU_STORE, MI_ALU_ACCU);
MI_ALU_STORE, MI_ALU_ACCU);
}
static inline struct mi_value