diff options
author | Bryant Wong <llvm-commits@xorshift.org> | 2016-12-29 20:05:51 +0000 |
---|---|---|
committer | Bryant Wong <llvm-commits@xorshift.org> | 2016-12-29 20:05:51 +0000 |
commit | 507256b2873e3c9ca203bc4fdafc7d017d265dcb (patch) | |
tree | 4b65f7709c066bc9470cfb9c11fadd48c2405bc5 /llvm/utils/update_llc_test_checks.py | |
parent | d566c345265421dedfb19d0c5a9a431d95b49b14 (diff) | |
download | bcm5719-llvm-507256b2873e3c9ca203bc4fdafc7d017d265dcb.tar.gz bcm5719-llvm-507256b2873e3c9ca203bc4fdafc7d017d265dcb.zip |
Fix indentation in r290716.
Use two-space indentation like the rest of the file.
llvm-svn: 290722
Diffstat (limited to 'llvm/utils/update_llc_test_checks.py')
-rwxr-xr-x | llvm/utils/update_llc_test_checks.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/utils/update_llc_test_checks.py b/llvm/utils/update_llc_test_checks.py index 13ebe68589f..d077c8a8eb2 100755 --- a/llvm/utils/update_llc_test_checks.py +++ b/llvm/utils/update_llc_test_checks.py @@ -226,10 +226,10 @@ def main(): for m in [RUN_LINE_RE.match(l) for l in input_lines] if m] run_lines = [raw_lines[0]] if len(raw_lines) > 0 else [] for l in raw_lines[1:]: - if run_lines[-1].endswith("\\"): - run_lines[-1] = run_lines[-1].rstrip("\\") + " " + l - else: - run_lines.append(l) + if run_lines[-1].endswith("\\"): + run_lines[-1] = run_lines[-1].rstrip("\\") + " " + l + else: + run_lines.append(l) if args.verbose: print >>sys.stderr, 'Found %d RUN lines:' % (len(run_lines),) |