Module Name: src
Committed By: joerg
Date: Sun Dec 1 01:05:17 UTC 2013
Modified Files:
src/external/gpl3/gdb/dist/gdb: arm-tdep.c
Log Message:
One const ought to be enough for every variable.
To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r1.2 src/external/gpl3/gdb/dist/gdb/arm-tdep.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/gpl3/gdb/dist/gdb/arm-tdep.c
diff -u src/external/gpl3/gdb/dist/gdb/arm-tdep.c:1.1.1.2 src/external/gpl3/gdb/dist/gdb/arm-tdep.c:1.2
--- src/external/gpl3/gdb/dist/gdb/arm-tdep.c:1.1.1.2 Thu Oct 3 15:49:39 2013
+++ src/external/gpl3/gdb/dist/gdb/arm-tdep.c Sun Dec 1 01:05:16 2013
@@ -12443,7 +12443,7 @@ decode_insn (insn_decode_record *arm_rec
{
/* (Starting from numerical 0); bits 25, 26, 27 decodes type of arm instruction. */
- static const sti_arm_hdl_fp_t const arm_handle_insn[8] =
+ static const sti_arm_hdl_fp_t arm_handle_insn[8] =
{
arm_record_data_proc_misc_ld_str, /* 000. */
arm_record_data_proc_imm, /* 001. */
@@ -12456,7 +12456,7 @@ decode_insn (insn_decode_record *arm_rec
};
/* (Starting from numerical 0); bits 13,14,15 decodes type of thumb instruction. */
- static const sti_arm_hdl_fp_t const thumb_handle_insn[8] =
+ static const sti_arm_hdl_fp_t thumb_handle_insn[8] =
{ \
thumb_record_shift_add_sub, /* 000. */
thumb_record_add_sub_cmp_mov, /* 001. */