gdb/
authorYao Qi <yao@codesourcery.com>
Tue, 16 Aug 2011 04:15:23 +0000 (04:15 +0000)
committerYao Qi <yao@codesourcery.com>
Tue, 16 Aug 2011 04:15:23 +0000 (04:15 +0000)
* tic6x-linux-tdep.c: Move const arrays definition from here...
* tic6x-tdep.c: to here ...

gdb/ChangeLog
gdb/tic6x-linux-tdep.c
gdb/tic6x-tdep.c

index 25f511f0780dde4eae9a2ef14b0f3afef9894154..2f13b3bcc564403aa214d39816f0cf1cfc1c1484 100644 (file)
@@ -1,3 +1,8 @@
+2011-08-16  Yao Qi  <yao@codesourcery.com>
+
+       * tic6x-linux-tdep.c: Move const arrays definition from here...
+       * tic6x-tdep.c: to here ...
+
 2011-08-14  Yao Qi  <yao@codesourcery.com>
 
        * NEWS: New port to Texas Instruments TMS320C6x.
index 0e4d327235925cabf23d68b519a4e93bacbd7dc2..c7026d63f2ef9e416f8f0dea833fb7ce7d46bd9c 100644 (file)
@@ -41,9 +41,6 @@
    size_t respectively.  */
 #define TIC6X_STACK_T_SIZE (3 * 4)
 
-const gdb_byte tic6x_bkpt_illegal_opcode_be[] = { 0x56, 0x45, 0x43, 0x14 };
-const gdb_byte tic6x_bkpt_illegal_opcode_le[] = { 0x14, 0x43, 0x45, 0x56 };
-
 static const gdb_byte tic6x_bkpt_bnop_be[] = { 0x00, 0x00, 0xa1, 0x22 };
 static const gdb_byte tic6x_bkpt_bnop_le[] = { 0x22, 0xa1, 0x00, 0x00 };
 
index eedb5e9129eca77c1d05adeed88a01c1e53c7db9..c7df5bce0adc1cb49de5a2c3462f3116163c6768 100644 (file)
@@ -61,6 +61,9 @@
 #define INST_S_BIT(INST) ((INST >> 1) & 1)
 #define INST_X_BIT(INST) ((INST >> 12) & 1)
 
+const gdb_byte tic6x_bkpt_illegal_opcode_be[] = { 0x56, 0x45, 0x43, 0x14 };
+const gdb_byte tic6x_bkpt_illegal_opcode_le[] = { 0x14, 0x43, 0x45, 0x56 };
+
 struct tic6x_unwind_cache
 {
   /* The frame's base, optionally used by the high-level debug info.  */
This page took 0.030756 seconds and 4 git commands to generate.