| Index: src/compiler/verifier.cc
|
| diff --git a/src/compiler/verifier.cc b/src/compiler/verifier.cc
|
| index 1bbd9da651c6a56996d12568c9d7894164daf902..3d6bd16ecba448e39de8bff51fdebe70133b2a46 100644
|
| --- a/src/compiler/verifier.cc
|
| +++ b/src/compiler/verifier.cc
|
| @@ -285,8 +285,8 @@ static void CheckInputsDominate(Schedule* schedule, BasicBlock* block,
|
| use_pos)) {
|
| V8_Fatal(__FILE__, __LINE__,
|
| "Node #%d:%s in B%d is not dominated by input@%d #%d:%s",
|
| - node->id(), node->op()->mnemonic(), block->id(), j, input->id(),
|
| - input->op()->mnemonic());
|
| + node->id(), node->op()->mnemonic(), block->id().ToInt(), j,
|
| + input->id(), input->op()->mnemonic());
|
| }
|
| }
|
| }
|
|
|