Early continue. NFC.
authorRui Ueyama <ruiu@google.com>
Fri, 24 Mar 2017 00:50:37 +0000 (00:50 +0000)
committerRui Ueyama <ruiu@google.com>
Fri, 24 Mar 2017 00:50:37 +0000 (00:50 +0000)
commit2c88cee15cbf1f1a6e2e52b43d008c839e0573da
treea3d8fb20a055f4539add8e87479e46c77758626f
parent382730ab23aa7d14bd66c90d9a31ddc22d496f56
Early continue. NFC.

The original code is a big `if` and `else` which ends with `continue`
like this:

  if (cond) {
    ...
    // fall through
  } else {
    ...
    continue;
  }

This patch rewrites it with the following.

  if (!cond) {
    ...
    continue;
  }
  ...

llvm-svn: 298672
lld/ELF/Relocations.cpp