diff options
author | 2017-02-13 21:26:22 +0000 | |
---|---|---|
committer | 2017-02-13 21:26:23 +0000 | |
commit | 60acc33c5b9bb93c23c4b54f6d97db2d5ec0828c (patch) | |
tree | 1be4af0c2b98992c782e44d4706df794f99d0bc9 /runtime/art_method.cc | |
parent | 2d33ce2d9640c32c6a912aedd9e2436b51985608 (diff) | |
parent | 37c8e5c1739c02f2c01217f556e946e554cd06d0 (diff) |
Merge "Remove special treatment of native method for CHA."
Diffstat (limited to 'runtime/art_method.cc')
-rw-r--r-- | runtime/art_method.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/art_method.cc b/runtime/art_method.cc index 6cb8544617..4902ad42d7 100644 --- a/runtime/art_method.cc +++ b/runtime/art_method.cc @@ -67,7 +67,6 @@ ArtMethod* ArtMethod::GetNonObsoleteMethod() { } ArtMethod* ArtMethod::GetSingleImplementation(PointerSize pointer_size) { - DCHECK(!IsNative()); if (!IsAbstract()) { // A non-abstract's single implementation is itself. return this; |