ilo: fix a missing 'else'

An 'else' is missing in the disassembler.

Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
This commit is contained in:
Chia-I Wu
2014-09-29 16:58:14 +08:00
parent 66a2fe4cf9
commit 8c7c0f7114
@@ -1159,7 +1159,7 @@ disasm_printer_add_mdesc_sampler(struct disasm_printer *printer,
if (ilo_dev_gen(inst->dev) >= ILO_GEN(7)) {
op = GEN_EXTRACT(mdesc, GEN7_MSG_SAMPLER_OP);
simd = GEN_EXTRACT(mdesc, GEN7_MSG_SAMPLER_SIMD);
} {
} else {
op = GEN_EXTRACT(mdesc, GEN6_MSG_SAMPLER_OP);
simd = GEN_EXTRACT(mdesc, GEN6_MSG_SAMPLER_SIMD);
}