Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(174)

Unified Diff: test/cctest/interpreter/generate-bytecode-expectations.cc

Issue 1805503003: [Interpreter] Add bytecode generator expectations for super calls. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add additional test cases. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/cctest/interpreter/generate-bytecode-expectations.cc
diff --git a/test/cctest/interpreter/generate-bytecode-expectations.cc b/test/cctest/interpreter/generate-bytecode-expectations.cc
index 9d73b325a6ef34bdffea330b7768f9a446d19e6a..13908f8177c55eba3ffe4ff43945dd50385430a3 100644
--- a/test/cctest/interpreter/generate-bytecode-expectations.cc
+++ b/test/cctest/interpreter/generate-bytecode-expectations.cc
@@ -226,7 +226,7 @@ ProgramOptions ProgramOptions::FromCommandLine(int argc, char** argv) {
} else if (strncmp(argv[i], "--", 2) != 0) { // It doesn't start with --
options.input_filenames_.push_back(argv[i]);
} else {
- REPORT_ERROR("Unknonwn option " << argv[i]);
+ REPORT_ERROR("Unknown option " << argv[i]);
options.parsing_failed_ = true;
break;
}

Powered by Google App Engine
This is Rietveld 408576698