Skip to content

Commit

Permalink
Fix indentation in r290716.
Browse files Browse the repository at this point in the history
Use two-space indentation like the rest of the file.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@290722 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
bryant committed Dec 29, 2016
1 parent d1a1321 commit e0c04cd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions utils/update_llc_test_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),)
Expand Down
8 changes: 4 additions & 4 deletions utils/update_test_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,10 +296,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),)
Expand Down

0 comments on commit e0c04cd

Please sign in to comment.