summaryrefslogtreecommitdiff
path: root/nss-tool/hw-support.c
diff options
context:
space:
mode:
Diffstat (limited to 'nss-tool/hw-support.c')
-rw-r--r--nss-tool/hw-support.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/nss-tool/hw-support.c b/nss-tool/hw-support.c
index 0aa097ffc..561064c17 100644
--- a/nss-tool/hw-support.c
+++ b/nss-tool/hw-support.c
@@ -24,6 +24,8 @@ int main(int argc, char const *argv[]) {
printf("\tPCLMUL \t%s supported\n", clmul_support() ? "" : "not");
printf("\tAVX \t%s supported\n", avx_support() ? "" : "not");
printf("\tSSSE3 \t%s supported\n", ssse3_support() ? "" : "not");
+ printf("\tSSE4.1 \t%s supported\n", sse4_1_support() ? "" : "not");
+ printf("\tSSE4.2 \t%s supported\n", sse4_2_support() ? "" : "not");
#elif defined(__aarch64__) || defined(__arm__)
printf("\tNEON \t%s supported\n", arm_neon_support() ? "" : "not");
printf("\tAES \t%s supported\n", arm_aes_support() ? "" : "not");