diff options
author | 2024-04-11 00:16:51 +0700 | |
---|---|---|
committer | 2024-04-11 03:16:51 +1000 | |
commit | 2c566627a1fc0ab21cc0399e8ad0ce134e36b53f (patch) | |
tree | 8eb19fad727675c673de8e59a7fd6137e14f2cfd /3rdparty/asmjit/test/asmjit_test_perf.cpp | |
parent | 4bcbfac11f352eabcae33b203c026ce02b3fd4ba (diff) |
3rdparty/asmjit: Updated to upstream version 1.13.0. (#12228)
From revision asmjit/asmjit@e5d7c0bd5d9aec44d68830187138149e6a8c4e32
Diffstat (limited to '3rdparty/asmjit/test/asmjit_test_perf.cpp')
-rw-r--r-- | 3rdparty/asmjit/test/asmjit_test_perf.cpp | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/3rdparty/asmjit/test/asmjit_test_perf.cpp b/3rdparty/asmjit/test/asmjit_test_perf.cpp index ab965948f40..98353fd147d 100644 --- a/3rdparty/asmjit/test/asmjit_test_perf.cpp +++ b/3rdparty/asmjit/test/asmjit_test_perf.cpp @@ -30,9 +30,19 @@ int main(int argc, char* argv[]) { unsigned((ASMJIT_LIBRARY_VERSION ) & 0xFF)); printf("Usage:\n"); - printf(" --help Show usage only\n"); - printf(" --quick Decrease the number of iterations to make tests quicker\n"); - printf(" --arch=<ARCH> Select architecture to run ('all' by default)\n"); + printf(" --help Show usage only\n"); + printf(" --quick Decrease the number of iterations to make tests quicker\n"); + printf(" --arch=<ARCH> Select architecture(s) to run ('all' by default)\n"); + printf("\n"); + + printf("Architectures:\n"); +#if !defined(ASMJIT_NO_X86) + printf(" --arch=x86 32-bit X86 architecture (X86)\n"); + printf(" --arch=x64 64-bit X86 architecture (X86_64)\n"); +#endif +#if !defined(ASMJIT_NO_AARCH64) + printf(" --arch=aarch64 64-bit ARM architecture (AArch64)\n"); +#endif printf("\n"); if (cmdLine.hasArg("--help")) |