From be726b5fb9fa19e9731faa6cacd747efbde9d5b9 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Thu, 4 May 2023 08:36:04 +0000 Subject: Reland "Support FastVerify with speed-profile." This reverts commit 4297f22d902cf156e14c330147215d5f2fa9bd7f. Bug: 279728780 Reason for revert: Resolve classes in inliner. Change-Id: I4f93ac5d195eb2f473ec50fe7cc70881dcddee6f --- compiler/jni/quick/jni_compiler.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compiler/jni/quick/jni_compiler.cc') diff --git a/compiler/jni/quick/jni_compiler.cc b/compiler/jni/quick/jni_compiler.cc index c60d97467e..763d37926f 100644 --- a/compiler/jni/quick/jni_compiler.cc +++ b/compiler/jni/quick/jni_compiler.cc @@ -154,11 +154,11 @@ static JniCompiledMethod ArtJniCompileMethodInternal(const CompilerOptions& comp // -- Don't allow any objects as parameter or return value if (UNLIKELY(is_critical_native)) { CHECK(is_static) - << "@CriticalNative functions cannot be virtual since that would" + << "@CriticalNative functions cannot be virtual since that would " << "require passing a reference parameter (this), which is illegal " << dex_file.PrettyMethod(method_idx, /* with_signature= */ true); CHECK(!is_synchronized) - << "@CriticalNative functions cannot be synchronized since that would" + << "@CriticalNative functions cannot be synchronized since that would " << "require passing a (class and/or this) reference parameter, which is illegal " << dex_file.PrettyMethod(method_idx, /* with_signature= */ true); for (size_t i = 0; i < strlen(shorty); ++i) { -- cgit v1.2.3-59-g8ed1b