-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #623 from michael-roe/cpufeatures
cpu_features: Update submodule pointer
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule cpu_features
updated
15 files
+12 −3 | CMakeLists.txt | |
+2 −0 | README.md | |
+1 −1 | include/cpu_features_macros.h | |
+99 −4 | include/cpuinfo_aarch64.h | |
+2 −0 | include/cpuinfo_riscv.h | |
+0 −1 | include/cpuinfo_x86.h | |
+1 −0 | include/internal/hwcaps.h | |
+32 −0 | include/internal/windows_utils.h | |
+138 −0 | src/impl_aarch64_windows.c | |
+1 −0 | src/impl_riscv_linux.c | |
+73 −1 | src/impl_x86__base_implementation.inl | |
+5 −1 | test/CMakeLists.txt | |
+97 −10 | test/cpuinfo_aarch64_test.cc | |
+24 −0 | test/cpuinfo_riscv_test.cc | |
+46 −0 | test/cpuinfo_x86_test.cc |