Skip to content
Snippets Groups Projects
Commit caaf56fb authored by Doug Evans's avatar Doug Evans
Browse files

* m32c.opc (parse_signed16): Fix typo.

parent 9b565742
No related branches found
No related tags found
No related merge requests found
2010-01-02 Doug Evans <dje@sebabeach.org>
* m32c.opc (parse_signed16): Fix typo.
2009-12-11 Nick Clifton <nickc@redhat.com> 2009-12-11 Nick Clifton <nickc@redhat.com>
* frv.opc: Fix shadowed variable warnings. * frv.opc: Fix shadowed variable warnings.
......
/* m32c opcode support. -*- C -*- /* m32c opcode support. -*- C -*-
Copyright 2005, 2007, 2009 Free Software Foundation, Inc. Copyright 2005, 2007, 2009, 2010 Free Software Foundation, Inc.
Contributed by Red Hat Inc; developed under contract from Renesas Contributed by Red Hat Inc; developed under contract from Renesas
...@@ -367,7 +367,7 @@ parse_signed16 (CGEN_CPU_DESC cd, const char **strp, ...@@ -367,7 +367,7 @@ parse_signed16 (CGEN_CPU_DESC cd, const char **strp,
if (errmsg == NULL if (errmsg == NULL
&& result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER) && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
value &= 0xffff; val &= 0xffff;
value = val; value = val;
*valuep = value; *valuep = value;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment