summaryrefslogtreecommitdiff
path: root/opcodes/mips-formats.h
diff options
context:
space:
mode:
authorRichard Sandiford <rdsandiford@googlemail.com>2013-07-17 08:06:11 +0000
committerRichard Sandiford <rdsandiford@googlemail.com>2013-07-17 08:06:11 +0000
commitb56e23fb1f0fc7545b9b04fd896baaac3e8aa735 (patch)
treec14ded5512abd33a0d4320206b5b2270d5dadde2 /opcodes/mips-formats.h
parent57e6060ea563b556bbb7d45128c508c9f2480e24 (diff)
downloadbinutils-gdb-b56e23fb1f0fc7545b9b04fd896baaac3e8aa735.tar.gz
opcodes/
* mips-formats.h (MAPPED_INT, MAPPED_REG, REG_PAIR): Add ATTRIBUTE_UNUSED.
Diffstat (limited to 'opcodes/mips-formats.h')
-rw-r--r--opcodes/mips-formats.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/opcodes/mips-formats.h b/opcodes/mips-formats.h
index 7deba5e0ebc..c55bb27a033 100644
--- a/opcodes/mips-formats.h
+++ b/opcodes/mips-formats.h
@@ -45,7 +45,8 @@
#define MAPPED_INT(SIZE, LSB, MAP, PRINT_HEX) \
{ \
- typedef char static_assert[(1 << (SIZE)) == ARRAY_SIZE (MAP)]; \
+ typedef char ATTRIBUTE_UNUSED \
+ static_assert[(1 << (SIZE)) == ARRAY_SIZE (MAP)]; \
static const struct mips_mapped_int_operand op = { \
{ OP_MAPPED_INT, SIZE, LSB }, MAP, PRINT_HEX \
}; \
@@ -70,7 +71,8 @@
#define MAPPED_REG(SIZE, LSB, BANK, MAP) \
{ \
- typedef char static_assert[(1 << (SIZE)) == ARRAY_SIZE (MAP)]; \
+ typedef char ATTRIBUTE_UNUSED \
+ static_assert[(1 << (SIZE)) == ARRAY_SIZE (MAP)]; \
static const struct mips_reg_operand op = { \
{ OP_REG, SIZE, LSB }, OP_REG_##BANK, MAP \
}; \
@@ -79,8 +81,10 @@
#define REG_PAIR(SIZE, LSB, BANK, MAP) \
{ \
- typedef char static_assert1[(1 << (SIZE)) == ARRAY_SIZE (MAP##1)]; \
- typedef char static_assert2[(1 << (SIZE)) == ARRAY_SIZE (MAP##2)]; \
+ typedef char ATTRIBUTE_UNUSED \
+ static_assert1[(1 << (SIZE)) == ARRAY_SIZE (MAP##1)]; \
+ typedef char ATTRIBUTE_UNUSED \
+ static_assert2[(1 << (SIZE)) == ARRAY_SIZE (MAP##2)]; \
static const struct mips_reg_pair_operand op = { \
{ OP_REG_PAIR, SIZE, LSB }, OP_REG_##BANK, MAP##1, MAP##2 \
}; \