diff options
Diffstat (limited to 'compiler/optimizing/graph_checker.cc')
-rw-r--r-- | compiler/optimizing/graph_checker.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/graph_checker.cc b/compiler/optimizing/graph_checker.cc index 35c52690de..4ebb1363cc 100644 --- a/compiler/optimizing/graph_checker.cc +++ b/compiler/optimizing/graph_checker.cc @@ -153,8 +153,9 @@ void GraphChecker::VisitInstruction(HInstruction* instruction) { ? use->GetBlock()->GetPhis() : use->GetBlock()->GetInstructions(); if (!list.Contains(use)) { - AddError(StringPrintf("User %d of instruction %d is not defined " + AddError(StringPrintf("User %s:%d of instruction %d is not defined " "in a basic block of the control-flow graph.", + use->DebugName(), use->GetId(), instruction->GetId())); } |