Skip to content

Commit

Permalink
fix compile error when intrinsics are enabled, close #1
Browse files Browse the repository at this point in the history
  • Loading branch information
dktapps committed Oct 18, 2020
1 parent 8a11c94 commit f85e366
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions morton.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ PHP_MINFO_FUNCTION(morton)
php_info_print_table_header(2, "morton support", "enabled");
php_info_print_table_row(2, "morton intrinsics",
#if defined(__AVX512BITALG__)
"AVX512",
"AVX512"
#elif defined(__BMI2__) || defined(__AVX2__)
"BMI2",
"BMI2"
#else
"not used"
#endif
Expand Down

0 comments on commit f85e366

Please sign in to comment.