Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1 | From 078df5b25d75578bb0448ca53514c23debe6d920 Mon Sep 17 00:00:00 2001 |
| 2 | From: Khem Raj <raj.khem@gmail.com> |
| 3 | Date: Tue, 29 Jan 2019 12:03:11 -0800 |
| 4 | Subject: [PATCH] burn.S: Remove .func/.endfunc |
| 5 | |
| 6 | These are useless on Linux systems where we use dwarf debug info instead |
| 7 | of stabs |
| 8 | |
| 9 | Upstream-Status: Pending |
| 10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| 11 | --- |
| 12 | burn.S | 2 -- |
| 13 | 1 file changed, 2 deletions(-) |
| 14 | |
| 15 | diff --git a/burn.S b/burn.S |
| 16 | index c372c87..4458f51 100644 |
| 17 | --- a/burn.S |
| 18 | +++ b/burn.S |
| 19 | @@ -5,7 +5,6 @@ |
| 20 | |
| 21 | .global main |
| 22 | .type main, STT_FUNC |
| 23 | - .func main |
| 24 | main: |
| 25 | bic sp, sp, #15 |
| 26 | 1: |
| 27 | @@ -23,4 +22,3 @@ main: |
| 28 | ssub8 lr, r4, r5 |
| 29 | vmul.u16 q13, q0, q4 |
| 30 | b 1b |
| 31 | -.endfunc |