summaryrefslogtreecommitdiff
path: root/compiler/exception_test.cc
diff options
context:
space:
mode:
author Mythri Alle <mythria@google.com> 2022-07-13 07:17:56 +0000
committer Mythri Alle <mythria@google.com> 2022-07-13 09:25:08 +0000
commit26aef1213dbdd7ab03688d898cf802c8c8d7e610 (patch)
tree62c107594123219d845a6730b4781706682ed7b0 /compiler/exception_test.cc
parent4ec05bb85ba1107c8295a295eec7e70bace0d047 (diff)
Revert "Introduce a flag to check if JITed code has instrumentation support"
This reverts commit fc067a360d14db5f84fd4b58e0dee6cb04ee759b. Reason for revert: test failures on jit-on-first-use: https://android-build.googleplex.com/builds/submitted/8821659/art-jit-on-first-use/latest/view/logs/build_error.log Change-Id: Ie9bc243baac777ecc4f47cc961494ca6ab3ef4c6
Diffstat (limited to 'compiler/exception_test.cc')
-rw-r--r--compiler/exception_test.cc7
1 files changed, 1 insertions, 6 deletions
diff --git a/compiler/exception_test.cc b/compiler/exception_test.cc
index a49c6c630e..4471b93f17 100644
--- a/compiler/exception_test.cc
+++ b/compiler/exception_test.cc
@@ -78,12 +78,7 @@ class ExceptionTest : public CommonRuntimeTest {
ArenaStack arena_stack(&pool);
ScopedArenaAllocator allocator(&arena_stack);
StackMapStream stack_maps(&allocator, kRuntimeISA);
- stack_maps.BeginMethod(/* frame_size_in_bytes= */ 4 * sizeof(void*),
- /* core_spill_mask= */ 0u,
- /* fp_spill_mask= */ 0u,
- /* num_dex_registers= */ 0u,
- /* baseline= */ false,
- /* debuggable= */ false);
+ stack_maps.BeginMethod(4 * sizeof(void*), 0u, 0u, 0u);
stack_maps.BeginStackMapEntry(kDexPc, native_pc_offset);
stack_maps.EndStackMapEntry();
stack_maps.EndMethod(code_size);