aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rspamd.com>2023-03-17 11:47:05 +0000
committerGitHub <noreply@github.com>2023-03-17 11:47:05 +0000
commite9f1c4097e5cb725a8296344b3adec072c98f2d1 (patch)
tree50f296a1a0b9cd8b9c7e0d282507a6e4e3e0469a /src
parent044a7abd8a9ba2e63d80438609b5a36cb6c866d6 (diff)
parentaeac58faaf9826f2b1de0786ccc50ba9d4495cdb (diff)
downloadrspamd-e9f1c4097e5cb725a8296344b3adec072c98f2d1.tar.gz
rspamd-e9f1c4097e5cb725a8296344b3adec072c98f2d1.zip
Merge pull request #4436 from a16bitsysop/warnings
[Minor] Fix some compiler warnings
Diffstat (limited to 'src')
-rw-r--r--src/libcryptobox/base64/avx2.c4
-rw-r--r--src/libcryptobox/base64/sse42.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/src/libcryptobox/base64/avx2.c b/src/libcryptobox/base64/avx2.c
index 432149a29..c44f8edf1 100644
--- a/src/libcryptobox/base64/avx2.c
+++ b/src/libcryptobox/base64/avx2.c
@@ -49,8 +49,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
extern const uint8_t base64_table_dec[256];
#ifdef RSPAMD_HAS_TARGET_ATTR
+#if defined(__GNUC__) && !defined(__clang__)
#pragma GCC push_options
#pragma GCC target("avx2")
+#endif
#ifndef __SSE2__
#define __SSE2__
#endif
@@ -281,5 +283,7 @@ repeat:
return ret;
}
+#if defined(__GNUC__) && !defined(__clang__)
#pragma GCC pop_options
#endif
+#endif
diff --git a/src/libcryptobox/base64/sse42.c b/src/libcryptobox/base64/sse42.c
index 806dd5298..f3b812dc9 100644
--- a/src/libcryptobox/base64/sse42.c
+++ b/src/libcryptobox/base64/sse42.c
@@ -49,8 +49,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
extern const uint8_t base64_table_dec[256];
#ifdef RSPAMD_HAS_TARGET_ATTR
+#if defined(__GNUC__) && !defined(__clang__)
#pragma GCC push_options
#pragma GCC target("sse4.2")
+#endif
#ifndef __SSE2__
#define __SSE2__
#endif
@@ -263,5 +265,7 @@ repeat:
return ret;
}
+#if defined(__GNUC__) && !defined(__clang__)
#pragma GCC pop_options
#endif
+#endif