Commit d08a318b by Claudiu Zissulescu

arc: Cleanup compilation warning

gcc/
xxxx-xx-xx  Claudiu Zissulescu  <claziss@synopsys.com>

	* config/arc/arc.h (ASM_FORMAT_PRIVATE_NAME): Fix it.
parent 1ef979c6
2020-03-31 Claudiu Zissulescu <claziss@synopsys.com>
* config/arc/arc.h (ASM_FORMAT_PRIVATE_NAME): Fix it.
2020-03-31 Srinath Parvathaneni <srinath.parvathaneni@arm.com> 2020-03-31 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
* config/arm/arm_mve.h (vbicq): Define MVE intrinsic polymorphic * config/arm/arm_mve.h (vbicq): Define MVE intrinsic polymorphic
variant. variant.
(__arm_vbicq): Likewise. (__arm_vbicq): Likewise.
2020-0-31 Vineet Gupta <vgupta@synopsys.com> 2020-03-31 Vineet Gupta <vgupta@synopsys.com>
* config/arc/linux.h: GLIBC_DYNAMIC_LINKER support BE/arc700. * config/arc/linux.h: GLIBC_DYNAMIC_LINKER support BE/arc700.
......
...@@ -1137,8 +1137,8 @@ do { \ ...@@ -1137,8 +1137,8 @@ do { \
an assembler-name for a local static variable named NAME. an assembler-name for a local static variable named NAME.
LABELNO is an integer which is different for each call. */ LABELNO is an integer which is different for each call. */
#define ASM_FORMAT_PRIVATE_NAME(OUTPUT, NAME, LABELNO) \ #define ASM_FORMAT_PRIVATE_NAME(OUTPUT, NAME, LABELNO) \
( (OUTPUT) = (char *) alloca (strlen ((NAME)) + 10), \ ((OUTPUT) = (char *) alloca (strlen ((NAME)) + 10), \
sprintf ((OUTPUT), "%s.%d", (NAME), (LABELNO))) sprintf ((OUTPUT), "%s.%u", (NAME), (unsigned int)(LABELNO)))
/* The following macro defines the format used to output the second /* The following macro defines the format used to output the second
operand of the .type assembler directive. Different svr4 assemblers operand of the .type assembler directive. Different svr4 assemblers
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment