Remove stray semicolon. This fix appears in later upstream gdb versions.

Submitted by:	eadler
This commit is contained in:
Ed Maste 2011-03-09 02:23:21 +00:00
parent bd727a6884
commit bdbd7b1333
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=219418

View File

@ -735,7 +735,7 @@ i386_skip_prologue (CORE_ADDR start_pc)
/* addl y,%ebx */
if (delta > 0 && op == 0x81
&& read_memory_unsigned_integer (pc + delta + 1, 1) == 0xc3);
&& read_memory_unsigned_integer (pc + delta + 1, 1) == 0xc3)
{
pc += delta + 6;
}