mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-18 13:04:36 +03:00
[abi] Added support for 32-bit ARM (WIP)
This commit is contained in:
23
asmjit-testing/bench/asmjit_bench_codegen_a32.cpp
Normal file
23
asmjit-testing/bench/asmjit_bench_codegen_a32.cpp
Normal file
@@ -0,0 +1,23 @@
|
||||
// This file is part of AsmJit project <https://asmjit.com>
|
||||
//
|
||||
// See <asmjit/core.h> or LICENSE.md for license and copyright information
|
||||
// SPDX-License-Identifier: Zlib
|
||||
|
||||
#include <asmjit/core.h>
|
||||
|
||||
#if !defined(ASMJIT_NO_AARCH32)
|
||||
#include <asmjit/a32.h>
|
||||
|
||||
#include <limits>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <asmjit-testing/bench/asmjit_bench_codegen.h>
|
||||
|
||||
using namespace asmjit;
|
||||
|
||||
void benchmark_aarch32_emitters(uint32_t num_iterations) {
|
||||
Support::maybe_unused(num_iterations);
|
||||
}
|
||||
|
||||
#endif // !ASMJIT_NO_AARCH32
|
||||
Reference in New Issue
Block a user