From 64a5ca7c2e11d8b6cce27dbd37bb21a37c5affee Mon Sep 17 00:00:00 2001 From: FreddyFunk <27208977+FreddyFunk@users.noreply.github.com> Date: Mon, 15 Aug 2022 23:46:30 +0200 Subject: [PATCH] tests: remove unused default iterations in TestThumb --- tests/test_generator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_generator.cpp b/tests/test_generator.cpp index ed0ed1b0..e3c6ca93 100644 --- a/tests/test_generator.cpp +++ b/tests/test_generator.cpp @@ -342,7 +342,7 @@ static void RunTestInstance(Dynarmic::A32::Jit& jit, } } // Anonymous namespace -void TestThumb(size_t num_instructions, size_t num_iterations = 100000) { +void TestThumb(size_t num_instructions, size_t num_iterations) { ThumbTestEnv jit_env{}; Dynarmic::A32::Jit jit{GetUserConfig(jit_env)};