aboutsummaryrefslogtreecommitdiff
path: root/sim/m32c/opc2c.c
diff options
context:
space:
mode:
Diffstat (limited to 'sim/m32c/opc2c.c')
-rw-r--r--sim/m32c/opc2c.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sim/m32c/opc2c.c b/sim/m32c/opc2c.c
index 3d8f2c1..6487427 100644
--- a/sim/m32c/opc2c.c
+++ b/sim/m32c/opc2c.c
@@ -249,13 +249,14 @@ dump_lines (opcode * op, int level, Indirect * ind)
errors++;
}
else if (shift && (mask != 0xff))
- printf ("%*s int %s AU = (op[%d] >> %d) & 0x%02x;\n",
+ printf ("%*s int %s ATTRIBUTE_UNUSED = (op[%d] >> %d) & 0x%02x;\n",
level, "", name, byte, shift, mask);
else if (mask != 0xff)
- printf ("%*s int %s AU = op[%d] & 0x%02x;\n",
+ printf ("%*s int %s ATTRIBUTE_UNUSED = op[%d] & 0x%02x;\n",
level, "", name, byte, mask);
else
- printf ("%*s int %s AU = op[%d];\n", level, "", name, byte);
+ printf ("%*s int %s ATTRIBUTE_UNUSED = op[%d];\n", level, "", name,
+ byte);
}
else
i++;