summaryrefslogtreecommitdiff
path: root/opcodes/crx-opc.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2012-02-27 06:37:38 +0000
committerAlan Modra <amodra@bigpond.net.au>2012-02-27 06:37:38 +0000
commit8efcb44b891d0bcc97f47212f203c879e7712ba6 (patch)
tree3a9df73b94b6b0606d62ba0bc33a2e3aae5ddc49 /opcodes/crx-opc.c
parent5f68d9bce47a17a53d1a4c8f96da9c6eb4817670 (diff)
downloadbinutils-redhat-8efcb44b891d0bcc97f47212f203c879e7712ba6.tar.gz
gas/
* config/tc-crx.c: Include bfd_stdint.h. (getconstant): Remove irrelevant comment. Don't fail due to sign-extension of int mask. (check_range): Rewrite using unsigned arithmetic throughout. opcodes/ * crx-dis.c (print_arg): Mask constant to 32 bits. * crx-opc.c (cst4_map): Use int array. include/opcode/ * crx.h (cst4_map): Update declaration.
Diffstat (limited to 'opcodes/crx-opc.c')
-rw-r--r--opcodes/crx-opc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/crx-opc.c b/opcodes/crx-opc.c
index b046c913e3..65e2e86cf7 100644
--- a/opcodes/crx-opc.c
+++ b/opcodes/crx-opc.c
@@ -1,5 +1,5 @@
/* crx-opc.c -- Table of opcodes for the CRX processor.
- Copyright 2004, 2005, 2007 Free Software Foundation, Inc.
+ Copyright 2004, 2005, 2007, 2012 Free Software Foundation, Inc.
Contributed by Tomer Levi NSC, Israel.
Originally written for GAS 2.12 by Tomer Levi.
@@ -701,7 +701,7 @@ The value in entry <N> is mapped to the value <N>
Example (for N=5):
cst4_map[5]=-4 -->> 5 */
-const long cst4_map[] =
+const int cst4_map[] =
{
0, 1, 2, 3, 4, -4, -1, 7, 8, 16, 32, 20, 12, 48
};