mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-27 21:50:40 +00:00
Fix indentation in r290716.
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
This commit is contained in:
parent
d1a132183f
commit
e0c04cd12c
@ -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),)
|
||||
|
@ -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),)
|
||||
|
Loading…
Reference in New Issue
Block a user