Commit 04927031 authored by rmcilroy's avatar rmcilroy Committed by Commit bot

[Interpreter] Fix typo in generate-bytecode-expectations.

BUG=v8:4681
LOG=N

Review URL: https://codereview.chromium.org/1894073007

Cr-Commit-Position: refs/heads/master@{#35679}
parent e96cbdcd
......@@ -322,7 +322,7 @@ void ProgramOptions::UpdateFromHeader(std::istream& stream) {
} else if (line.compare(0, 16, "do expressions: ") == 0) {
do_expressions_ = ParseBoolean(line.c_str() + 16);
} else if (line.compare(0, 21, "ignition generators: ") == 0) {
do_expressions_ = ParseBoolean(line.c_str() + 21);
ignition_generators_ = ParseBoolean(line.c_str() + 21);
} else if (line == "---") {
break;
} else if (line.empty()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment