From 64ccdaf9776dba9c36c23b11754df6e4b6e67ef2 Mon Sep 17 00:00:00 2001 From: Michael Hamburg Date: Thu, 22 Jan 2015 16:08:29 -0800 Subject: [PATCH] field_t * -> field_a_t --- src/include/field.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/include/field.h b/src/include/field.h index 212eda5..fdac6a7 100644 --- a/src/include/field.h +++ b/src/include/field.h @@ -137,16 +137,16 @@ field_sqrn ( static __inline__ mask_t __attribute__((unused,always_inline)) -field_low_bit (const struct field_t *f) { - struct field_t red; - field_copy(&red,f); - field_strong_reduce(&red); +field_low_bit (const field_a_t f) { + field_a_t red; + field_copy(red,f); + field_strong_reduce(red); return -(1&red.limb[0]); } static __inline__ mask_t __attribute__((unused,always_inline)) -field_make_nonzero (struct field_t *f) { +field_make_nonzero (field_a_t f) { mask_t z = field_is_zero(f); field_addw( f, -z ); return z;