summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/gentarget-def.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 63b716b21b6..080aa39a03a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2015-06-25 H.J. Lu <hongjiu.lu@intel.com>
+
+ * gentarget-def.c (def_target_insn): Cast return of strtol to
+ unsigned int.
+
2015-06-25 Andrew MacLeod <amacleod@redhat.com>
* gimple.h (gimple_call_set_fn): Move inline function.
diff --git a/gcc/gentarget-def.c b/gcc/gentarget-def.c
index d4839e881d9..bca94804e18 100644
--- a/gcc/gentarget-def.c
+++ b/gcc/gentarget-def.c
@@ -85,7 +85,7 @@ def_target_insn (const char *name, const char *prototype)
That doesn't contribute to the suffix, so skip ahead and
process the following character. */
char *endptr;
- if (strtol (p + 1, &endptr, 10) != opno
+ if ((unsigned int) strtol (p + 1, &endptr, 10) != opno
|| (*endptr != ',' && *endptr != ')'))
{
error ("invalid prototype for '%s'", name);