diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2015-02-02 18:24:11 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2015-02-03 18:11:46 +0000 |
commit | 276d9daaedfbff716339f94d55e6eff98b7434c6 (patch) | |
tree | fdef0e2d95396aedae484dc5163689f282a8dd12 /compiler/optimizing/graph_checker.cc | |
parent | bd17c3b46b035861ced434d6ed4d4fe183736e65 (diff) | |
download | art-276d9daaedfbff716339f94d55e6eff98b7434c6.tar.gz art-276d9daaedfbff716339f94d55e6eff98b7434c6.tar.bz2 art-276d9daaedfbff716339f94d55e6eff98b7434c6.zip |
Inline methods with multiple blocks.
Change-Id: I3431af60e97fae230e0b6e98bcf0acc0ee9abf8c
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())); } |