From 3ca227f1137e6a3b65bc33f5689e1c230d591595 Mon Sep 17 00:00:00 2001 From: Andres Erbsen Date: Tue, 8 Jan 2019 04:21:38 -0500 Subject: remove old pipeline --- liblow/cmovznz.c | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 liblow/cmovznz.c (limited to 'liblow/cmovznz.c') diff --git a/liblow/cmovznz.c b/liblow/cmovznz.c deleted file mode 100644 index f0b3012b6..000000000 --- a/liblow/cmovznz.c +++ /dev/null @@ -1,13 +0,0 @@ -#include -#include "liblow.h" -uint64_t cmovznz(uint64_t t, uint64_t z, uint64_t nz) { - asm ("testq %1, %1;" "\n" - "\t" "cmovnzq %3, %0;" - :"=r"(z) - :"r"(t), "0"(z), "r"(nz) - ); - return z; -} -uint64_t cmovznz64(uint64_t t, uint64_t z, uint64_t nz) { - return cmovznz(t, z, nz); -} -- cgit v1.2.3