Index: test/cctest/wasm/test-wasm-breakpoints.cc |
diff --git a/test/cctest/wasm/test-wasm-breakpoints.cc b/test/cctest/wasm/test-wasm-breakpoints.cc |
index 78e949b0853dd8dba1eed57294ceee99d5c8c79d..1dc83b1c4b00eecbf20f36f31c51d306e126cd38 100644 |
--- a/test/cctest/wasm/test-wasm-breakpoints.cc |
+++ b/test/cctest/wasm/test-wasm-breakpoints.cc |
@@ -25,7 +25,7 @@ void CheckLocations( |
WasmCompiledModule *compiled_module, debug::Location start, |
debug::Location end, |
std::initializer_list<debug::Location> expected_locations_init) { |
- std::vector<debug::Location> locations; |
+ std::vector<debug::BreakLocation> locations; |
bool success = |
compiled_module->GetPossibleBreakpoints(start, end, &locations); |
CHECK(success); |
@@ -48,7 +48,7 @@ void CheckLocations( |
} |
void CheckLocationsFail(WasmCompiledModule *compiled_module, |
debug::Location start, debug::Location end) { |
- std::vector<debug::Location> locations; |
+ std::vector<debug::BreakLocation> locations; |
bool success = |
compiled_module->GetPossibleBreakpoints(start, end, &locations); |
CHECK(!success); |