Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nodejs/node-v0.x-archive
base: adf2cfd54da2
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: 3122e0eae64c
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Aug 22, 2014

  1. deps: fix up v8 after fd80a3

    fd80a31 has introduced a segfault
    during redundant boundary check elimination (#8208).
    
    The problem consists of two parts:
    
      1. Abscense of instruction iterator in
         `EliminateRedundantBoundsChecks`. It was present in recent v8, but
         wasn't considered important at the time of backport. However, since
         the function is changing instructions order in block, it is
         important to not rely at `i->next()` at the end of the loop.
      2. Too strict ASSERT in `MoveIndexIfNecessary`. It is essentially a
         backport of a45c96ab from v8's upstream. See
         v8/v8@a45c96ab for details.
    
    fix #8208
    indutny committed Aug 22, 2014
    Copy the full SHA
    3122e0e View commit details
    Browse the repository at this point in the history