mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 18:40:13 +01:00
intel/brw: Use fs_inst in disasm_annotate()
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27866>
This commit is contained in:
parent
db322554a7
commit
f5a593ade7
2 changed files with 3 additions and 3 deletions
|
|
@ -126,7 +126,7 @@ disasm_new_inst_group(struct disasm_info *disasm, int next_inst_offset)
|
|||
|
||||
void
|
||||
disasm_annotate(struct disasm_info *disasm,
|
||||
struct backend_instruction *inst, int offset)
|
||||
fs_inst *inst, int offset)
|
||||
{
|
||||
const struct cfg_t *cfg = disasm->cfg;
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
struct cfg_t;
|
||||
struct backend_instruction;
|
||||
struct fs_inst;
|
||||
struct intel_device_info;
|
||||
|
||||
struct inst_group {
|
||||
|
|
@ -77,7 +77,7 @@ disasm_new_inst_group(struct disasm_info *disasm, int offset);
|
|||
|
||||
void
|
||||
disasm_annotate(struct disasm_info *disasm,
|
||||
struct backend_instruction *inst, int offset);
|
||||
struct fs_inst *inst, int offset);
|
||||
|
||||
void
|
||||
disasm_insert_error(struct disasm_info *disasm, int offset,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue