mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-22 15:39:07 +00:00
Fixed tabs in Makefile, removed gcc-specific alignment of poly
This commit is contained in:
parent
3203f115e5
commit
bf17b28d9d
@ -8,8 +8,8 @@ CFLAGS=-Wall -Wextra -Wpedantic -Werror -std=c99 -I../../../common $(EXTRAFLAGS)
|
|||||||
all: $(LIB)
|
all: $(LIB)
|
||||||
|
|
||||||
$(LIB): $(OBJECTS)
|
$(LIB): $(OBJECTS)
|
||||||
$(AR) -r $@ $(OBJECTS)
|
$(AR) -r $@ $(OBJECTS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) $(OBJECTS)
|
$(RM) $(OBJECTS)
|
||||||
$(RM) $(LIB)
|
$(RM) $(LIB)
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint32_t coeffs[N];
|
uint32_t coeffs[N];
|
||||||
} poly __attribute__((aligned(32)));
|
} poly;
|
||||||
|
|
||||||
void PQCLEAN_DILITHIUMIII_poly_reduce(poly *a);
|
void PQCLEAN_DILITHIUMIII_poly_reduce(poly *a);
|
||||||
void PQCLEAN_DILITHIUMIII_poly_csubq(poly *a);
|
void PQCLEAN_DILITHIUMIII_poly_csubq(poly *a);
|
||||||
|
Loading…
Reference in New Issue
Block a user