opcodes/
* s390-mkopc.c (file_header): Add const.
This commit is contained in:
parent
ccd6faef2b
commit
cdaaa29dd6
2 changed files with 9 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
|||
2012-11-29 Roland McGrath <mcgrathr@google.com>
|
||||
|
||||
* s390-mkopc.c (file_header): Add const.
|
||||
|
||||
2012-11-29 David Holsgrove <david.holsgrove@xilinx.com>
|
||||
|
||||
* microblaze-opc.h: Rename INST_TYPE_RD_R1_SPECIAL to
|
||||
|
@ -51,7 +55,7 @@
|
|||
|
||||
2012-11-14 Edgar E. Iglesias <edgar.iglesias@gmail.com>
|
||||
|
||||
* microblaze-opc.h: Increase MAX_OPCODES (op_code_struct): add lbur,
|
||||
* microblaze-opc.h: Increase MAX_OPCODES (op_code_struct): add lbur,
|
||||
lhur, lwr, sbr, shr, swr
|
||||
* microblaze-opcm.h (microblaze_instr): add lbur, lhur, lwr, sbr, shr,
|
||||
swr
|
||||
|
|
|
@ -50,7 +50,7 @@ struct op_struct
|
|||
char format[16];
|
||||
int mode_bits;
|
||||
int min_cpu;
|
||||
|
||||
|
||||
unsigned long long sort_value;
|
||||
int no_nibbles;
|
||||
};
|
||||
|
@ -276,7 +276,7 @@ insertExpandedMnemonic (char *opcode, char *mnemonic, char *format,
|
|||
fprintf (stderr, "Malformed mnemonic: %s\n", mnemonic);
|
||||
}
|
||||
|
||||
static char file_header[] =
|
||||
static const char file_header[] =
|
||||
"/* The opcode table. This file was generated by s390-mkopc.\n\n"
|
||||
" The format of the opcode table is:\n\n"
|
||||
" NAME OPCODE MASK OPERANDS\n\n"
|
||||
|
@ -306,7 +306,7 @@ dumpTable (void)
|
|||
for (str = op_array[ix].opcode; *str != 0; str++)
|
||||
if (*str == '?')
|
||||
*str = '0';
|
||||
printf ("OP%i(0x%sLL), ",
|
||||
printf ("OP%i(0x%sLL), ",
|
||||
op_array[ix].no_nibbles*4, op_array[ix].opcode);
|
||||
printf ("MASK_%s, INSTR_%s, ",
|
||||
op_array[ix].format, op_array[ix].format);
|
||||
|
@ -326,7 +326,7 @@ int
|
|||
main (void)
|
||||
{
|
||||
char currentLine[256];
|
||||
|
||||
|
||||
createTable ();
|
||||
|
||||
/* Read opcode descriptions from `stdin'. For each mnemonic,
|
||||
|
|
Loading…
Reference in a new issue