Skip to content

Commit

Permalink
deps: fix V8 test regression
Browse files Browse the repository at this point in the history
Fixes a regression introduced in a V8 backport PR.
A small change in cctest/test-log.cc was forgotten.

Refs: #22028
Refs: v8/v8@ba752ea

PR-URL: #22677
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
  • Loading branch information
targos committed Sep 4, 2018
1 parent 71f633a commit ebc965f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/v8/test/cctest/test-log.cc
Expand Up @@ -738,7 +738,7 @@ TEST(LogVersion) {
TEST(Issue539892) {
class : public i::CodeEventLogger {
public:
void CodeMoveEvent(i::AbstractCode* from, Address to) override {}
void CodeMoveEvent(i::AbstractCode* from, i::AbstractCode* to) override {}
void CodeDisableOptEvent(i::AbstractCode* code,
i::SharedFunctionInfo* shared) override {}

Expand Down

0 comments on commit ebc965f

Please sign in to comment.