diff options
| author | 2016-03-22 15:34:36 +0000 | |
|---|---|---|
| committer | 2016-03-22 15:34:36 +0000 | |
| commit | 1f4364d180d231a7d086eb0641deec30f71d02e6 (patch) | |
| tree | 57b7f203a2e350aa3e8141953055a8bb6c8c18d1 /compiler | |
| parent | 0339bee5b1be39669606c4ba57edd42a0bacf0ff (diff) | |
| parent | 796d63050a18f263b93ea34951a61deaecab3422 (diff) | |
Merge "Add an ImtConflictTable to better resolve IMT conflicts."
Diffstat (limited to 'compiler')
| -rw-r--r-- | compiler/image_writer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/image_writer.cc b/compiler/image_writer.cc index 07bd0e35db..c747ffa65b 100644 --- a/compiler/image_writer.cc +++ b/compiler/image_writer.cc @@ -1986,7 +1986,7 @@ const uint8_t* ImageWriter::GetQuickCode(ArtMethod* method, const ImageInfo& image_info, bool* quick_is_interpreted) { DCHECK(!method->IsResolutionMethod()) << PrettyMethod(method); - DCHECK(!method->IsImtConflictMethod()) << PrettyMethod(method); + DCHECK_NE(method, Runtime::Current()->GetImtConflictMethod()) << PrettyMethod(method); DCHECK(!method->IsImtUnimplementedMethod()) << PrettyMethod(method); DCHECK(method->IsInvokable()) << PrettyMethod(method); DCHECK(!IsInBootImage(method)) << PrettyMethod(method); |