diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2001-06-09 22:42:30 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2001-06-09 22:42:30 +0000 |
commit | e4d94d0b3b1ee6dfe3c4a4b73cfc7589646318ce (patch) | |
tree | 6798956d9e722294120b0497d7bb6c8d6acefa00 /opcodes | |
parent | 882f5f6080aaf55ae67ffbb90809ee1455abcbb0 (diff) | |
download | gdb-e4d94d0b3b1ee6dfe3c4a4b73cfc7589646318ce.tar.gz |
* sh-opc.h (sh_table): Don't use empty initializers.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/sh-opc.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 2e7e09e39db..314e35db5b6 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2001-06-09 Alexandre Oliva <aoliva@redhat.com> + + * sh-opc.h (sh_table): Don't use empty initializers. + 2001-06-06 Christian Groessler <cpg@aladdin.de> * z8k-dis.c: Fix formatting. diff --git a/opcodes/sh-opc.h b/opcodes/sh-opc.h index aae7f3b7d37..065413c9f57 100644 --- a/opcodes/sh-opc.h +++ b/opcodes/sh-opc.h @@ -835,7 +835,7 @@ sh_opcode_info sh_table[] = { /* 1111nn0111111101 ftrv XMTRX_M4,<V_REG_n>*/{"ftrv",{XMTRX_M4,V_REG_N},{HEX_F,REG_NM,HEX_F,HEX_D}, arch_sh4_up}, -{ 0, {}, {}, 0 } +{ 0, {0}, {0}, 0 } }; #endif |