diff options
Diffstat (limited to 'compiler/optimizing/instruction_builder.cc')
-rw-r--r-- | compiler/optimizing/instruction_builder.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/optimizing/instruction_builder.cc b/compiler/optimizing/instruction_builder.cc index fe4a86e38e..9c6576bc18 100644 --- a/compiler/optimizing/instruction_builder.cc +++ b/compiler/optimizing/instruction_builder.cc @@ -385,6 +385,9 @@ bool HInstructionBuilder::Build() { if (!ProcessDexInstruction(pair.Inst(), dex_pc, quicken_index)) { return false; } + DCHECK(!Thread::Current()->IsExceptionPending()) + << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex()) + << pair.Inst().Name() << "@" << dex_pc; if (QuickenInfoTable::NeedsIndexForInstruction(&pair.Inst())) { ++quicken_index; |