Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 15d20bfd authored by Domen Puncer's avatar Domen Puncer Committed by Linus Torvalds
Browse files

[PATCH] ptrace_h8300: condition bugfix



Assignment doesn't make much sense here as condition would always be true.

Signed-off-by: default avatarDomen Puncer <domen@coderock.org>
Signed-off-by: default avatarYoshinori Sato <ysato@users.sourceforge.jp>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 76381fee
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -245,12 +245,12 @@ static unsigned short *getnextpc(struct task_struct *child, unsigned short *pc)
						addr = h8300_get_reg(child, regno-1+PT_ER1);
					return (unsigned short *)addr;
				case relb:
					if ((inst = 0x55) || isbranch(child,inst & 0x0f))
					if (inst == 0x55 || isbranch(child,inst & 0x0f))
						pc = (unsigned short *)((unsigned long)pc +
								       ((signed char)(*fetch_p)));
					return pc+1; /* skip myself */
				case relw:
					if ((inst = 0x5c) || isbranch(child,(*fetch_p & 0xf0) >> 4))
					if (inst == 0x5c || isbranch(child,(*fetch_p & 0xf0) >> 4))
						pc = (unsigned short *)((unsigned long)pc +
								       ((signed short)(*(pc+1))));
					return pc+2; /* skip myself */