aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cpu/ChangeLog4
-rw-r--r--cpu/frv.opc4
2 files changed, 6 insertions, 2 deletions
diff --git a/cpu/ChangeLog b/cpu/ChangeLog
index 7cbbfff..8914568 100644
--- a/cpu/ChangeLog
+++ b/cpu/ChangeLog
@@ -1,3 +1,7 @@
+2005-02-24 Alan Modra <amodra@bigpond.net.au>
+
+ * frv.opc (parse_A): Warning fix.
+
2005-02-23 Nick Clifton <nickc@redhat.com>
* frv.opc: Fixed compile time warnings about differing signed'ness
diff --git a/cpu/frv.opc b/cpu/frv.opc
index 1de2385..ba567ba 100644
--- a/cpu/frv.opc
+++ b/cpu/frv.opc
@@ -968,7 +968,7 @@ static const char * parse_A0
static const char * parse_A1
PARAMS ((CGEN_CPU_DESC, const char **, int, unsigned long *));
static const char * parse_A
- PARAMS ((CGEN_CPU_DESC, const char **, int, unsigned long *, long));
+ PARAMS ((CGEN_CPU_DESC, const char **, int, unsigned long *, unsigned long));
inline static const char *
parse_symbolic_address (CGEN_CPU_DESC cd,
@@ -1821,7 +1821,7 @@ parse_A (cd, strp, opindex, valuep, A)
const char **strp;
int opindex;
unsigned long *valuep;
- long A;
+ unsigned long A;
{
const char *errmsg;