aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2006-11-02 21:39:56 +0000
committerDaniel Jacobowitz <drow@false.org>2006-11-02 21:39:56 +0000
commitd1e50f8a7ecfabc19c7c72927ff98791a47d2d93 (patch)
treeba746d63b20c7ee5626c1a160d94df61d6ed793b /gas/config
parent31ffec4870b73c7eadab3f98bc777d5c0fb2dd6a (diff)
downloadgdb-d1e50f8a7ecfabc19c7c72927ff98791a47d2d93.zip
gdb-d1e50f8a7ecfabc19c7c72927ff98791a47d2d93.tar.gz
gdb-d1e50f8a7ecfabc19c7c72927ff98791a47d2d93.tar.bz2
* config/tc-h8300.c (build_bytes): Fix const warning.
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/tc-h8300.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-h8300.c b/gas/config/tc-h8300.c
index 91f58e9..bfea992 100644
--- a/gas/config/tc-h8300.c
+++ b/gas/config/tc-h8300.c
@@ -1389,7 +1389,7 @@ build_bytes (const struct h8_instruction *this_try, struct h8_op *operand)
{
int i;
char *output = frag_more (this_try->length);
- op_type *nibble_ptr = this_try->opcode->data.nib;
+ const op_type *nibble_ptr = this_try->opcode->data.nib;
op_type c;
unsigned int nibble_count = 0;
int op_at[3];