summaryrefslogtreecommitdiff
path: root/opcodes/s390-mkopc.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2012-11-29 23:42:03 +0000
committerRoland McGrath <roland@gnu.org>2012-11-29 23:42:03 +0000
commita3c2df1e358bb370827add62b064b03ba0c0fbb9 (patch)
treeb580efe0a6a48725e10d6c6593fc0057c53a8e53 /opcodes/s390-mkopc.c
parent356e60f035fc024240085a6e3ddd800e8351ff17 (diff)
downloadbinutils-redhat-a3c2df1e358bb370827add62b064b03ba0c0fbb9.tar.gz
opcodes/
* s390-mkopc.c (file_header): Add const.
Diffstat (limited to 'opcodes/s390-mkopc.c')
-rw-r--r--opcodes/s390-mkopc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/opcodes/s390-mkopc.c b/opcodes/s390-mkopc.c
index c2c98de4d5..6aed72b818 100644
--- a/opcodes/s390-mkopc.c
+++ b/opcodes/s390-mkopc.c
@@ -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,