From: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxxx> show_instruction() uses the field 'target' to display OP_SWITCH instruction instead of 'cond' like OP_BR does. It doesn't change anything since these two fields use the same storage inside struct instruction but better to use the right field to keep consistent. --- linearize.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linearize.c b/linearize.c index c6ada1e8..31d2a6cd 100644 --- a/linearize.c +++ b/linearize.c @@ -357,7 +357,7 @@ const char *show_instruction(struct instruction *insn) } case OP_SWITCH: { struct multijmp *jmp; - buf += sprintf(buf, "%s", show_pseudo(insn->target)); + buf += sprintf(buf, "%s", show_pseudo(insn->cond)); FOR_EACH_PTR(insn->multijmp_list, jmp) { if (jmp->begin == jmp->end) buf += sprintf(buf, ", %d -> .L%p", jmp->begin, jmp->target); -- 2.10.2 -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html