aboutsummaryrefslogtreecommitdiff
path: root/configure.sh
diff options
context:
space:
mode:
Diffstat (limited to 'configure.sh')
-rw-r--r--configure.sh14
1 files changed, 1 insertions, 13 deletions
diff --git a/configure.sh b/configure.sh
index 1555570..96f34cd 100644
--- a/configure.sh
+++ b/configure.sh
@@ -71,7 +71,7 @@ esac
case $(echo "x$VECTORISE_STREAMING_STORES" | tr '[:upper:]' '[:lower:]') in
(xyes) VECTORISE_STREAMING_STORES=1 ;;
(xno) VECTORISE_STREAMING_STORES=0 ;;
- (x) VECTORISE_STREAMING_STORES=1 ;; # default
+ (x) VECTORISE_STREAMING_STORES=0 ;; # default
(*) echo "BEGIN ERROR"
echo "Illegal value of option VECTORISE_STREAMING_STORES"
echo "END ERROR"
@@ -88,16 +88,6 @@ case $(echo "x$VECTORISE_INLINE" | tr '[:upper:]' '[:lower:]') in
exit 1
esac
-case $(echo "x$VECTORISE_EMULATE_AVX" | tr '[:upper:]' '[:lower:]') in
- (xyes) VECTORISE_EMULATE_AVX=1 ;;
- (xno) VECTORISE_EMULATE_AVX=0 ;;
- (x) VECTORISE_EMULATE_AVX=0 ;; # default
- (*) echo "BEGIN ERROR"
- echo "Illegal value of option VECTORISE_EMULATE_AVX"
- echo "END ERROR"
- exit 1
-esac
-
################################################################################
@@ -112,7 +102,6 @@ echo "VECTORISE_ALWAYS_USE_UNALIGNED_LOADS $VECTORISE_ALWAYS_USE_UNALIGNED_LOADS
echo "VECTORISE_ALWAYS_USE_ALIGNED_LOADS $VECTORISE_ALWAYS_USE_ALIGNED_LOADS"
echo "VECTORISE_INLINE $VECTORISE_INLINE"
echo "VECTORISE_STREAMING_STORES $VECTORISE_STREAMING_STORES"
-echo "VECTORISE_EMULATE_AVX $VECTORISE_EMULATE_AVX"
echo "END DEFINE"
echo "BEGIN MAKE_DEFINITION"
@@ -122,5 +111,4 @@ echo "VECTORISE_ALWAYS_USE_UNALIGNED_LOADS = $VECTORISE_ALWAYS_USE_UNALIGNED_LOA
echo "VECTORISE_ALWAYS_USE_ALIGNED_LOADS = $VECTORISE_ALWAYS_USE_ALIGNED_LOADS"
echo "VECTORISE_INLINE = $VECTORISE_INLINE"
echo "VECTORISE_STREAMING_STORES = $VECTORISE_STREAMING_STORES"
-echo "VECTORISE_EMULATE_AVX = $VECTORISE_EMULATE_AVX"
echo "END MAKE_DEFINITION"