diff options
author | Christophe Lyon <christophe.lyon@linaro.org> | 2025-04-30 11:07:52 +0000 |
---|---|---|
committer | Christophe Lyon <christophe.lyon@linaro.org> | 2025-07-09 08:14:15 +0000 |
commit | ff6c323997f9543b4706c63d2c3e8fb83312470e (patch) | |
tree | 2a34406c3ca5967ff5446f1b57a5e03b051b020d | |
parent | 963d5362c598d48ee7a896e674d2a68c41179785 (diff) | |
download | gcc-ff6c323997f9543b4706c63d2c3e8fb83312470e.zip gcc-ff6c323997f9543b4706c63d2c3e8fb83312470e.tar.gz gcc-ff6c323997f9543b4706c63d2c3e8fb83312470e.tar.bz2 |
arm: remove useless push/pop pragmas in arm_neon.h
Remove #pragma GCC target ("arch=armv8.2-a+bf16") since it matches the
preceding pragma GCC target and is thus useless.
gcc/ChangeLog:
* config/arm/arm_neon.h: Remove useless push/pop pragmas.
-rw-r--r-- | gcc/config/arm/arm_neon.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/config/arm/arm_neon.h b/gcc/config/arm/arm_neon.h index cba50de..105385f 100644 --- a/gcc/config/arm/arm_neon.h +++ b/gcc/config/arm/arm_neon.h @@ -20938,11 +20938,6 @@ vbfdotq_lane_f32 (float32x4_t __r, bfloat16x8_t __a, bfloat16x4_t __b, return __builtin_neon_vbfdot_lanev4bfv4sf (__r, __a, __b, __index); } -#pragma GCC pop_options - -#pragma GCC push_options -#pragma GCC target ("arch=armv8.2-a+bf16") - typedef struct bfloat16x4x2_t { bfloat16x4_t val[2]; |