Skip to content

Commit

Permalink
deps: V8: cherry-pick 1606efaedf74
Browse files Browse the repository at this point in the history
Original commit message:

    [gcc] Fix warning in Turboprop

    Change-Id: I87d9d9a86edfed6112cdc5c7576e85bd5ae5f047
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3755141
    Reviewed-by: Nico Hartmann <[email protected]>
    Auto-Submit: Leszek Swirski <[email protected]>
    Commit-Queue: Nico Hartmann <[email protected]>
    Commit-Queue: Leszek Swirski <[email protected]>
    Cr-Commit-Position: refs/heads/main@{#81632}

Refs: v8/v8@1606efa
  • Loading branch information
richardlau committed Jul 11, 2022
1 parent f316cfc commit ceba89d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

# Reset this number to 0 on major V8 upgrades.
# Increment by one for each non-official patch applied to deps/v8.
'v8_embedder_string': '-node.7',
'v8_embedder_string': '-node.8',

##### V8 defaults for Node.js #####

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ struct DecompressionAnalyzer : AnalyzerBase {
return NeedsDecompression(graph.Index(op));
}
bool MarkAsNeedsDecompression(OpIndex op) {
return needs_decompression[op] = true;
return (needs_decompression[op] = true);
}

template <bool is_loop>
Expand Down

0 comments on commit ceba89d

Please sign in to comment.