From 3b478317102c9087c841084589b0f5e0ba0992ae Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Fri, 22 Jul 2022 22:34:55 -0500 Subject: [PATCH] f --- src/pixie/simd/internal.nim | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pixie/simd/internal.nim b/src/pixie/simd/internal.nim index 9137d13..ce804a7 100644 --- a/src/pixie/simd/internal.nim +++ b/src/pixie/simd/internal.nim @@ -100,7 +100,8 @@ macro hasSimd*(procedure: untyped) = procedure[6] = body - if not foundSimd: - echo "No SIMD found for " & procSignature(name, procedure) + when not defined(pixieNoSimd): + if not foundSimd: + echo "No SIMD found for " & procSignature(name, procedure) return procedure