diff options
author | Pedro Alves <palves@redhat.com> | 2015-02-12 09:59:03 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-02-19 22:45:47 +0000 |
commit | f63c17760fab6fbf56ba500f7a8c746aa15b34a4 (patch) | |
tree | 7bba01d309f4181669a16387647f39b1884dca9b /include/opcode/rx.h | |
parent | 07df97c8578023d1c9313bcec8aceef14de3e90b (diff) | |
download | binutils-gdb-f63c17760fab6fbf56ba500f7a8c746aa15b34a4.tar.gz |
Wrap a few opcodes headers in extern "C" for C++
These are sufficient to link an --enable-targets=all GDB build in C++
mode, on x86_64 Fedora 20.
include/opcode/
2015-02-19 Pedro Alves <palves@redhat.com>
* cgen.h [__cplusplus]: Wrap in extern "C".
* msp430-decode.h [__cplusplus]: Likewise.
* nios2.h [__cplusplus]: Likewise.
* rl78.h [__cplusplus]: Likewise.
* rx.h [__cplusplus]: Likewise.
* tilegx.h [__cplusplus]: Likewise.
opcodes/
2015-02-19 Pedro Alves <palves@redhat.com>
* microblaze-dis.h [__cplusplus]: Wrap in extern "C".
Diffstat (limited to 'include/opcode/rx.h')
-rw-r--r-- | include/opcode/rx.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/opcode/rx.h b/include/opcode/rx.h index e4fe05deeb3..41557b2f8c2 100644 --- a/include/opcode/rx.h +++ b/include/opcode/rx.h @@ -23,6 +23,10 @@ analyzer, and the disassembler. Given an opcode data source, it decodes the next opcode into the following structures. */ +#ifdef __cplusplus +extern "C" { +#endif + typedef enum { RX_AnySize = 0, @@ -212,3 +216,7 @@ typedef struct registers. 32..47 are condition codes. */ int rx_decode_opcode (unsigned long, RX_Opcode_Decoded *, int (*)(void *), void *); + +#ifdef __cplusplus +} +#endif |