Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
howjmay committed Jun 9, 2024
1 parent 2bb067c commit 1442281
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ ARCH_CFLAGS := $(ARCH_CFLAGS)+$(subst $(COMMA),+,$(FEATURE))
endif
endif

CXXFLAGS += -Wall -Wstrict-aliasing=1 -Wcast-qual -O2 -I. $(ARCH_CFLAGS) -std=gnu++14
CXXFLAGS += -Wall -Wstrict-aliasing=1 -Wcast-qual -O3 -I. $(ARCH_CFLAGS) -std=gnu++14
LDFLAGS += -lm
OBJS = \
tests/binding.o \
Expand Down
3 changes: 2 additions & 1 deletion tests/impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7429,7 +7429,8 @@ result_t test_mm_alignr_pi8(const SSE2NEONTestImpl &impl, uint32_t iter)

__m64 a = load_m64(_a);
__m64 b = load_m64(_b);
__m64 ret = _mm_set_pi32(0, 0);
uint8_t *_a = {0, 0, 0, 0, 0, 0, 0, 0};
__m64 ret = load_m64(zeros);
switch (iter % 3) {
case 0:
ret = _mm_alignr_pi8(a, b, 0);
Expand Down

0 comments on commit 1442281

Please sign in to comment.