Index: test/cctest/interpreter/bytecode-expectations-printer.cc |
diff --git a/test/cctest/interpreter/bytecode-expectations-printer.cc b/test/cctest/interpreter/bytecode-expectations-printer.cc |
index 83f11c6d424c779a89aa25065fdb50e5aa640648..69638cc15fef50a320335444de8c235395ee3e9f 100644 |
--- a/test/cctest/interpreter/bytecode-expectations-printer.cc |
+++ b/test/cctest/interpreter/bytecode-expectations-printer.cc |
@@ -21,7 +21,7 @@ |
#include "src/interpreter/bytecodes.h" |
#include "src/interpreter/interpreter-intrinsics.h" |
#include "src/interpreter/interpreter.h" |
-#include "src/interpreter/source-position-table.h" |
+#include "src/source-position-table.h" |
namespace v8 { |
namespace internal { |
@@ -201,7 +201,7 @@ void BytecodeExpectationsPrinter::PrintSourcePosition( |
int bytecode_offset) const { |
static const size_t kPositionWidth = 4; |
if (!source_iterator.done() && |
- source_iterator.bytecode_offset() == bytecode_offset) { |
+ source_iterator.code_offset() == bytecode_offset) { |
stream << "/* " << std::setw(kPositionWidth) |
<< source_iterator.source_position(); |
if (source_iterator.is_statement()) { |