diff options
author | Boris Gjenero <dreamlayers@rockbox.org> | 2011-11-09 19:20:33 +0000 |
---|---|---|
committer | Boris Gjenero <dreamlayers@rockbox.org> | 2011-11-09 19:20:33 +0000 |
commit | 415f579bf39f20ba904fb983edca8dd960fc0f32 (patch) | |
tree | 304f859fe86ee1be2807ba55a716262043a4921d /apps | |
parent | d01954cad2a8b6de0faadec599a24bac14350043 (diff) | |
download | rockbox-415f579bf39f20ba904fb983edca8dd960fc0f32.tar.gz rockbox-415f579bf39f20ba904fb983edca8dd960fc0f32.zip |
Fix assembler .size directives. Currently used binutils don't complain, but 2.21.1 treats these as errors.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30945 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/plugins/lib/grey_sh.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/grey_sh.S b/apps/plugins/lib/grey_sh.S index 5bc003c2b3..5714f95f8c 100644 --- a/apps/plugins/lib/grey_sh.S +++ b/apps/plugins/lib/grey_sh.S | |||
@@ -132,6 +132,6 @@ __grey_line1: | |||
132 | 132 | ||
133 | rts | 133 | rts |
134 | nop | 134 | nop |
135 | .size _grey_line1, . - _grey_line1 | 135 | .size __grey_line1, . - __grey_line1 |
136 | 136 | ||
137 | #endif | 137 | #endif |