Commit f5360106 authored by Christian Borntraeger's avatar Christian Borntraeger Committed by Martin Schwidefsky
Browse files

[S390] disassembler: Remove redundant variable assignment



There is no need to assign "0" to "hops" twice. Remove one assigment.

Signed-off-by: default avatarChristian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent 74ccbdc2
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -1243,7 +1243,6 @@ void show_code(struct pt_regs *regs)
	}
	/* Find a starting point for the disassembly. */
	while (start < 32) {
		hops = 0;
		for (i = 0, hops = 0; start + i < 32 && hops < 3; hops++) {
			if (!find_insn(code + start + i))
				break;