diff options
| author | Rui Ueyama <ruiu@google.com> | 2017-03-24 00:50:37 +0000 |
|---|---|---|
| committer | Rui Ueyama <ruiu@google.com> | 2017-03-24 00:50:37 +0000 |
| commit | 2c88cee15cbf1f1a6e2e52b43d008c839e0573da (patch) | |
| tree | a3d8fb20a055f4539add8e87479e46c77758626f /llvm/docs/CommandGuide/llvm-diff.rst | |
| parent | 382730ab23aa7d14bd66c90d9a31ddc22d496f56 (diff) | |
| download | bcm5719-llvm-2c88cee15cbf1f1a6e2e52b43d008c839e0573da.tar.gz bcm5719-llvm-2c88cee15cbf1f1a6e2e52b43d008c839e0573da.zip | |
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
Diffstat (limited to 'llvm/docs/CommandGuide/llvm-diff.rst')
0 files changed, 0 insertions, 0 deletions

