diff options
author | 2015-02-03 18:12:44 +0000 | |
---|---|---|
committer | 2015-02-03 18:12:44 +0000 | |
commit | f9af19413333c271192c3b11425f865bd8054c0c (patch) | |
tree | fdef0e2d95396aedae484dc5163689f282a8dd12 /compiler/optimizing/graph_checker.cc | |
parent | bd17c3b46b035861ced434d6ed4d4fe183736e65 (diff) | |
parent | 276d9daaedfbff716339f94d55e6eff98b7434c6 (diff) |
Merge "Inline methods with multiple blocks."
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())); } |