From: Mike Frysinger Date: Sat, 8 Jan 2011 20:45:11 +0000 (+0000) Subject: gdb: bfin: tix typo in register name X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=1642781ba323cb7391322762ffd4d5b508358aae;p=deliverable%2Fbinutils-gdb.git gdb: bfin: tix typo in register name Looks like we've long been using "AO" instead of "A0" in the enum for the A0.W. But no one noticed since we aren't using it directly (we assume the position in the reverse). I've committed this simple fix. Signed-off-by: Mike Frysinger --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index dc8213e52b..966a84a6b0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2011-01-08 Mike Frysinger + + * bfin-tdep.h (BFIN_A0_DOT_W_REGNUM): Fix typo in name. + 2011-01-08 Robert Millan * fbsd-nat.c (fbsd_find_memory_regions): Fix typo. diff --git a/gdb/bfin-tdep.h b/gdb/bfin-tdep.h index 23af235a45..356a5318e8 100644 --- a/gdb/bfin-tdep.h +++ b/gdb/bfin-tdep.h @@ -55,7 +55,7 @@ enum gdb_regnum { BFIN_L2_REGNUM, BFIN_L3_REGNUM, BFIN_A0_DOT_X_REGNUM, - BFIN_AO_DOT_W_REGNUM, + BFIN_A0_DOT_W_REGNUM, BFIN_A1_DOT_X_REGNUM, BFIN_A1_DOT_W_REGNUM, BFIN_ASTAT_REGNUM,