diff options
author | 2024-11-01 15:36:00 +0000 | |
---|---|---|
committer | 2024-11-05 13:16:27 +0000 | |
commit | 389f84b5c45cb58255ebcc44758f04adc37dd5b6 (patch) | |
tree | 4990938805b605c9e9de2bef1bb61eec18512aec | |
parent | ad2afaee629a165ee965e61158933fa3aa2a3e64 (diff) |
Fix HiddenApi bits of refersTo
Test: art/test/testrunner/testrunner.py --host --64 -b --optimizing
Test: Do adb shell setprop \
persist.debug.dalvik.vm.core_platform_api_policy enabled
adb root
adb shell "stop; start"
and don't see a Core platform API violation about refersTo
Bug: 376736704
Change-Id: Iaba7e61347697b1a0b7b2b4afd3d6787f0a549da
-rw-r--r-- | runtime/hidden_api.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/hidden_api.h b/runtime/hidden_api.h index 077eb69a86..21cd04e2dc 100644 --- a/runtime/hidden_api.h +++ b/runtime/hidden_api.h @@ -292,7 +292,6 @@ ALWAYS_INLINE inline uint32_t GetRuntimeFlags(ArtMethod* method) case Intrinsics::kSystemArrayCopyInt: case Intrinsics::kStringGetCharsNoCheck: case Intrinsics::kReferenceGetReferent: - case Intrinsics::kReferenceRefersTo: case Intrinsics::kMemoryPeekByte: case Intrinsics::kMemoryPokeByte: case Intrinsics::kCRC32Update: |