gdb/gdbserver

* i386-low.c (i386_length_and_rw_bits): Move the comment to
	the right place.
This commit is contained in:
Yao Qi
2013-05-17 02:22:52 +00:00
parent 4bebc771c7
commit 96f7a20fe9
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2013-05-17 Yao Qi <yao@codesourcery.com>
* i386-low.c (i386_length_and_rw_bits): Move the comment to
the right place.
2013-05-16 Luis Machado <lgustavo@codesourcery.com>
* linux-low.c: Move definition checks upwards for PT_TEXT_ADDR,

View File

@@ -243,10 +243,10 @@ Invalid hardware breakpoint type %d in i386_length_and_rw_bits.\n",
return (DR_LEN_2 | rw);
case 4:
return (DR_LEN_4 | rw);
/* ELSE FALL THROUGH */
case 8:
if (TARGET_HAS_DR_LEN_8)
return (DR_LEN_8 | rw);
/* ELSE FALL THROUGH */
default:
error ("\
Invalid hardware breakpoint length %d in i386_length_and_rw_bits.\n", len);