Skip to content

Commit

Permalink
Fixed define (gcc complaining) and label on align-bench
Browse files Browse the repository at this point in the history
  • Loading branch information
smarco committed Sep 30, 2023
1 parent 8291560 commit 99a5879
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tools/align_benchmark/align_benchmark_params.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ void usage() {
" --input|i PATH \n"
" --output|o PATH \n"
" --output-full PATH \n"
" [Penalties & Span] \n"
" [Penalties] \n"
" --linear-penalties|p M,X,I \n"
" --affine-penalties|g M,X,O,E \n"
" --affine2p-penalties M,X,O1,E1,O2,E2 \n"
Expand Down
10 changes: 5 additions & 5 deletions wavefront/wavefront_extend_kernels.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
* DESCRIPTION: WFA module for the "extension" of exact matches
*/

#ifdef __APPLE__ || defined(__FreeBSD__)
#include <machine/endian.h> // __BYTE_ORDER
#else
#include <endian.h> // __BYTE_ORDER
#endif
#if defined(__APPLE__) || defined(__FreeBSD__)
#include <machine/endian.h> // __BYTE_ORDER
#else
#include <endian.h> // __BYTE_ORDER
#endif

#include "wavefront_extend_kernels.h"
#include "wavefront_termination.h"
Expand Down

0 comments on commit 99a5879

Please sign in to comment.