about summary refs log tree commit diff stats
path: root/src/wrapped
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-05-28 10:42:41 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-05-28 10:42:41 +0200
commitb9f5929439ab5e0ebf9d64b2dc2659a9a018f19d (patch)
treeabd27a75f28e1a50caf99716ca76b7f1184c125d /src/wrapped
parent3dc396a64775a0aa8aae55513eda0d326cb50080 (diff)
downloadbox64-b9f5929439ab5e0ebf9d64b2dc2659a9a018f19d.tar.gz
box64-b9f5929439ab5e0ebf9d64b2dc2659a9a018f19d.zip
[INTERPRETER] More avx, avx2 and vaes opcodes
Diffstat (limited to 'src/wrapped')
-rw-r--r--src/wrapped/wrappedlibc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wrapped/wrappedlibc.c b/src/wrapped/wrappedlibc.c
index 51d7557f..e547d523 100644
--- a/src/wrapped/wrappedlibc.c
+++ b/src/wrapped/wrappedlibc.c
@@ -1639,7 +1639,7 @@ void CreateCPUInfoFile(int fd)
         P;
         sprintf(buff, "bogomips\t: %g\n", getBogoMips());
         P;
-        sprintf(buff, "flags\t\t: fpu cx8 sep ht cmov clflush mmx sse sse2 syscall tsc lahf_lm ssse3 ht tm lm fxsr cpuid pclmulqdq cx16 aes movbe pni sse4_1%s%s lzcnt popcnt%s\n", box64_sse42?" sse4_2":"", box64_avx?" avx":"", box64_avx2?" avx2":"");
+        sprintf(buff, "flags\t\t: fpu cx8 sep ht cmov clflush mmx sse sse2 syscall tsc lahf_lm ssse3 ht tm lm fxsr cpuid pclmulqdq cx16 aes movbe pni sse4_1%s%s lzcnt popcnt%s%s\n", box64_sse42?" sse4_2":"", box64_avx?" avx":"", box64_avx2?" avx2":"", box64_avx2?" vaes":"");
         P;
         sprintf(buff, "address sizes\t: 48 bits physical, 48 bits virtual\n");
         P;