Skip to content

Commit beb6d78

Browse files
committed
Cleanup extraneous spaces on empty lines
1 parent d0e0985 commit beb6d78

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tools/toolchains/arm.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def __init__(self, target, notify=None, macros=None,
7171

7272
ARM_BIN = join(TOOLCHAIN_PATHS['ARM'], "bin")
7373
ARM_INC = join(TOOLCHAIN_PATHS['ARM'], "include")
74-
74+
7575
main_cc = join(ARM_BIN, "armcc")
7676

7777
self.flags['common'] += ["--cpu=%s" % cpu]
@@ -155,7 +155,7 @@ def assemble(self, source, object, includes):
155155
dir = join(dirname(object), '.temp')
156156
mkdir(dir)
157157
tempfile = join(dir, basename(object) + '.E.s')
158-
158+
159159
# Build preprocess assemble command
160160
cmd_pre = self.asm
161161
cmd_pre.extend(self.get_compile_options(
@@ -168,17 +168,17 @@ def assemble(self, source, object, includes):
168168
# Call cmdline hook
169169
cmd_pre = self.hook.get_cmdline_assembler(cmd_pre)
170170
cmd = self.hook.get_cmdline_assembler(cmd)
171-
171+
172172
# Return command array, don't execute
173173
return [cmd_pre, cmd]
174174

175175
@hook_tool
176176
def compile(self, cc, source, object, includes):
177177
# Build compile command
178178
cmd = cc + self.get_compile_options(self.get_symbols(), includes)
179-
179+
180180
cmd.extend(self.get_dep_option(object))
181-
181+
182182
cmd.extend(["-o", object, source])
183183

184184
# Call cmdline hook

0 commit comments

Comments
 (0)