diff options
author | Calin Juravle <calin@google.com> | 2015-04-13 14:25:53 +0000 |
---|---|---|
committer | Calin Juravle <calin@google.com> | 2015-04-13 14:25:53 +0000 |
commit | 031af41d1debbdbd8964d7c504a789068dfe6029 (patch) | |
tree | a480bdc4a80f63d46abcde2ef7a36e1ad072d624 /compiler/dex/verified_method.h | |
parent | c751d37e692d89b360f3c09421401f581b5c6d06 (diff) | |
download | art-031af41d1debbdbd8964d7c504a789068dfe6029.zip art-031af41d1debbdbd8964d7c504a789068dfe6029.tar.gz art-031af41d1debbdbd8964d7c504a789068dfe6029.tar.bz2 |
Revert "Fallback to quick in case of soft verification errors"
This reverts commit c751d37e692d89b360f3c09421401f581b5c6d06.
Change-Id: I2183df8e856410989bc019f6a1f58af37d5d7eab
Diffstat (limited to 'compiler/dex/verified_method.h')
-rw-r--r-- | compiler/dex/verified_method.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/compiler/dex/verified_method.h b/compiler/dex/verified_method.h index 437ae52..954cbf4 100644 --- a/compiler/dex/verified_method.h +++ b/compiler/dex/verified_method.h @@ -70,11 +70,6 @@ class VerifiedMethod { // by using the check-cast elision peephole optimization in the verifier. bool IsSafeCast(uint32_t pc) const; - // Returns true if there were any errors during verification. - bool HasVerificationFailures() const { - return has_verification_failures_; - } - private: VerifiedMethod() = default; @@ -112,8 +107,6 @@ class VerifiedMethod { // dex PC to dex method index or dex field index based on the instruction. DequickenMap dequicken_map_; SafeCastSet safe_cast_set_; - - bool has_verification_failures_; }; } // namespace art |