Commit f84c6067 by Jakub Jelinek Committed by Jakub Jelinek

re PR target/88734 (AArch64's ACLE intrinsics give an ICE instead of compile…

re PR target/88734 (AArch64's ACLE intrinsics give an ICE instead of compile error when option mismatch.)

	PR target/88734
	* config/arm/arm_neon.h: Fix #pragma GCC target syntax - replace
	(("..."))) with ("...").

From-SVN: r268064
parent 05d25603
2019-01-18 Jakub Jelinek <jakub@redhat.com>
PR target/88734
* config/arm/arm_neon.h: Fix #pragma GCC target syntax - replace
(("..."))) with ("...").
2019-01-18 Sebastian Huber <sebastian.huber@embedded-brains.de> 2019-01-18 Sebastian Huber <sebastian.huber@embedded-brains.de>
* doc/extend.texi (Built-in Functions for Memory Model Aware * doc/extend.texi (Built-in Functions for Memory Model Aware
......
...@@ -18310,12 +18310,12 @@ vfmlsl_laneq_high_u32 (float32x2_t __r, float16x4_t __a, float16x8_t __b, ...@@ -18310,12 +18310,12 @@ vfmlsl_laneq_high_u32 (float32x2_t __r, float16x4_t __a, float16x8_t __b,
/* AdvSIMD Complex numbers intrinsics. */ /* AdvSIMD Complex numbers intrinsics. */
#if __ARM_ARCH >= 8 #if __ARM_ARCH >= 8
#pragma GCC push_options #pragma GCC push_options
#pragma GCC target(("arch=armv8.3-a")) #pragma GCC target ("arch=armv8.3-a")
#if defined (__ARM_FP16_FORMAT_IEEE) || defined (__ARM_FP16_FORMAT_ALTERNATIVE) #if defined (__ARM_FP16_FORMAT_IEEE) || defined (__ARM_FP16_FORMAT_ALTERNATIVE)
#pragma GCC push_options #pragma GCC push_options
#pragma GCC target(("+fp16")) #pragma GCC target ("+fp16")
__extension__ extern __inline float16x4_t __extension__ extern __inline float16x4_t
__attribute__ ((__always_inline__, __gnu_inline__, __artificial__)) __attribute__ ((__always_inline__, __gnu_inline__, __artificial__))
vcadd_rot90_f16 (float16x4_t __a, float16x4_t __b) vcadd_rot90_f16 (float16x4_t __a, float16x4_t __b)
......
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