mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 13:28:06 +02:00
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:
parent
45e5c6b641
commit
62c64e7b9d
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue