From: Kyrylo Tkachov Date: Fri, 5 Apr 2013 15:03:11 +0000 (+0000) Subject: arm.c (arm_expand_builtin): Change fcode type to unsigned int. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ddbdd8a73c22be39a22b5186277c5387df0e70c9;p=gcc.git arm.c (arm_expand_builtin): Change fcode type to unsigned int. 2013-04-05 Kyrylo Tkachov * config/arm/arm.c (arm_expand_builtin): Change fcode type to unsigned int. From-SVN: r197517 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 12f941fa063..59c452856c4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-04-05 Kyrylo Tkachov + + * config/arm/arm.c (arm_expand_builtin): Change fcode + type to unsigned int. + 2013-04-05 Ramana Radhakrishnan * doc/invoke.texi (ARM Options): Document cortex-a53 support. diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index 231a27f5ffd..1558fb0eef9 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -21489,7 +21489,7 @@ arm_expand_builtin (tree exp, rtx op1; rtx op2; rtx pat; - int fcode = DECL_FUNCTION_CODE (fndecl); + unsigned int fcode = DECL_FUNCTION_CODE (fndecl); size_t i; enum machine_mode tmode; enum machine_mode mode0;