diff options
author | Kenneth Graunke <[email protected]> | 2016-08-23 16:35:59 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2016-08-23 21:19:58 -0700 |
commit | e7530bfcd6acdc8f8984820445c4b41602952298 (patch) | |
tree | e0c13f03283ff854863cffe75ff27cb16b274a38 /src/intel/tools/disasm.c | |
parent | 56ba9656bb38ce0d1448545a6d9d3ebcc39f18bf (diff) |
aubinator: Style fixes.
Signed-off-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/intel/tools/disasm.c')
-rw-r--r-- | src/intel/tools/disasm.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/intel/tools/disasm.c b/src/intel/tools/disasm.c index cbee2fc2859..a1cb19197cf 100644 --- a/src/intel/tools/disasm.c +++ b/src/intel/tools/disasm.c @@ -36,7 +36,8 @@ struct gen_disasm { }; void -gen_disasm_disassemble(struct gen_disasm *disasm, void *assembly, int start, int end, FILE *out) +gen_disasm_disassemble(struct gen_disasm *disasm, void *assembly, int start, + int end, FILE *out) { struct brw_device_info *devinfo = &disasm->devinfo; bool dump_hex = false; @@ -74,7 +75,7 @@ gen_disasm_disassemble(struct gen_disasm *disasm, void *assembly, int start, int /* Simplistic, but efficient way to terminate disasm */ if (brw_inst_opcode(devinfo, insn) == BRW_OPCODE_SEND || - brw_inst_opcode(devinfo, insn) == BRW_OPCODE_SENDC) + brw_inst_opcode(devinfo, insn) == BRW_OPCODE_SENDC) if (brw_inst_eot(devinfo, insn)) break; if (brw_inst_opcode(devinfo, insn) == 0) |