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/plugins | |
| parent | d01954cad2a8b6de0faadec599a24bac14350043 (diff) | |
| download | rockbox-415f579bf39f20ba904fb983edca8dd960fc0f32.zip rockbox-415f579bf39f20ba904fb983edca8dd960fc0f32.tar.gz rockbox-415f579bf39f20ba904fb983edca8dd960fc0f32.tar.bz2 rockbox-415f579bf39f20ba904fb983edca8dd960fc0f32.tar.xz | |
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/plugins')
| -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 5bc003c..5714f95 100644 --- a/apps/plugins/lib/grey_sh.S +++ b/apps/plugins/lib/grey_sh.S @@ -132,6 +132,6 @@ __grey_line1: rts nop - .size _grey_line1, . - _grey_line1 + .size __grey_line1, . - __grey_line1 #endif |