]> www.wagner.pp.ru Git - openssl-gost/engine.git/commitdiff
MSVC: Remove GCC pragma messages
authorVitaly Chikunov <vt@altlinux.org>
Fri, 3 Dec 2021 09:32:35 +0000 (12:32 +0300)
committerDmitry Belyavskiy <beldmit@users.noreply.github.com>
Sat, 11 Dec 2021 16:45:14 +0000 (19:45 +0300)
These planned to be removed later anyway. Error message:

  gosthash2012_ref.h(15,18): warning C4081: expected '('; found 'string'

Signed-off-by: Vitaly Chikunov <vt@altlinux.org>
gosthash2012_ref.h
gosthash2012_sse2.h

index c113e15a7be1ad79ed40186f9d47c628daf21772..f2383ea894985d898b99f444b42fae35efdd65fa 100644 (file)
@@ -12,8 +12,6 @@
 # error "GOST R 34.11-2012: portable implementation disabled in config.h"
 #endif
 
-# pragma message "Use regular implementation"
-
 #define X(x, y, z) { \
     z->QWORD[0] = x->QWORD[0] ^ y->QWORD[0]; \
     z->QWORD[1] = x->QWORD[1] ^ y->QWORD[1]; \
index 5f704db099cbd0622276cb26c80bcc6ad6b23f7f..07e2ec0079caf925417918d879b4a0d36f6b67e7 100644 (file)
@@ -12,8 +12,6 @@
 # error "GOST R 34.11-2012: SSE2 not enabled"
 #endif
 
-# pragma message "Use SIMD implementation"
-
 #include <mmintrin.h>
 #include <emmintrin.h>
 #ifdef __SSE3__