Skip to content
  • Rui Ueyama's avatar
    Early continue. NFC. · 2c88cee1
    Rui Ueyama authored
    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
    2c88cee1
Loading