diff options
author | Nick Clifton <nickc@redhat.com> | 1997-08-14 02:13:32 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1997-08-14 02:13:32 +0000 |
commit | f7fcba7a84a2806099a92002058f60ce14b9a076 (patch) | |
tree | 9cef2a6ee1b6c9b69373114a296eed8ad4484172 /sim/v850/gencode.c | |
parent | 32e23ecd9ce3a7a867b2fc5638d3b107925b4fd9 (diff) | |
download | gdb-f7fcba7a84a2806099a92002058f60ce14b9a076.zip gdb-f7fcba7a84a2806099a92002058f60ce14b9a076.tar.gz gdb-f7fcba7a84a2806099a92002058f60ce14b9a076.tar.bz2 |
Added support for v850e and v850eq instructions.
Diffstat (limited to 'sim/v850/gencode.c')
-rw-r--r-- | sim/v850/gencode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/v850/gencode.c b/sim/v850/gencode.c index 52146cb..05fc4ec 100644 --- a/sim/v850/gencode.c +++ b/sim/v850/gencode.c @@ -28,7 +28,7 @@ write_header () struct v850_opcode *opcode; for (opcode = (struct v850_opcode *)v850_opcodes; opcode->name; opcode++) - printf("void OP_%X PARAMS ((void));\t\t/* %s */\n", + printf("int OP_%X PARAMS ((void));\t\t/* %s */\n", opcode->opcode, opcode->name); } |